Any idea what would be event triggered at the time the values get populated in a field from a call back list?
Also the call back function if added in the callout script gets called even before the selection is made and the value appears in the field?
I am trying to do the following but getting an error "object doesn't support this property or method".function callback(){ var optionsArray = document.callout_form.selection_list.options; for ( i = 0 ; i < optionsArray.length ; i++ ) { if (optionsArray.selected) { if (!set_datacapture_item_value( optionsArray.value )) { alert('Fatal callout error. Did you close the datacapture window?'); }parent.getScriptFrame().dummy(optionsArray.selected); return true; } } // did not find a selected option! return false;}