Check documentation for the latest version of dhtmlxSuite onSelectionChange DHTMLX Docs

onSelectionChange

fires when the preselected value inside the combo changes

void onSelectionChange();

Example

myCombo.attachEvent("onSelectionChange", function(){
    //your code here
 });

Details

Differs from onChange event that occurs only when the value is really changed.

Back to top