Check documentation for the latest version of dhtmlxSuite onOptionsLoaded DHTMLX Docs

onOptionsLoaded

fires after the item options were completely loaded from the server to the client

void onOptionsLoaded(string name);
namestringitem name

Example

myForm.attachEvent("onOptionsLoaded", function(name){
    //your code here
});

Details

the event is used for select and combo items

Back to top