Check documentation for the latest version of dhtmlxSuite onChange DHTMLX Docs

onChange

fires when the combo's value is changed

void onChange(string value,string text);
valuestringthe value of the option
textstringthe text of the option

Example

myCombo.attachEvent("onChange", function(value, text){
    // your code here
});

Back to top