inputChange
fires on changing the value in the Input control of Toolbar
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
toolbar.events.on("inputChange", function(id, newValue){
console.log(id, newValue);
});
Related sample: Toolbar. Events
Change log:
added in v7.2