fires when the user clicks on an option in the combo list
id | string|number | id of an item |
ind | number | index of the option in question |
text | string | the option's text |
myRibbon.attachEvent("onSelectOption",function(id,ind,text){
//your code here
});
Back to top