inputChange
fires on changing the value in the Input control of Ribbon
inputChange: (id: string | number, newValue: string) => any;
Parameters:
id: string | number
- the id of the Input controlnewValue: string
- the new value of the control
Example
ribbon.events.on("inputChange", function(id, newValue){
console.log(id, newValue);
});
Related sample: Ribbon. Events
Change log:
added in v8.3