Check documentation for the latest version of dhtmlxSuite onSelectOption DHTMLX Docs

onSelectOption

fires when the user clicks on an option in the combo list

void onSelectOption(string|number id,number ind,string text);
idstring|numberid of an item
indnumberindex of the option in question
textstringthe option's text

Example

myRibbon.attachEvent("onSelectOption",function(id,ind,text){
        //your code here
});

Back to top