input
fires on entering a text into the input field
input: (id: string, value: string) => void;
Parameters:
id: string
- the ID of the input fieldvalue: string
- the entered value
Example
ribbon.events.on("input", function(id, value){
console.log("You've entered: " + value);
});
Related sample: Ribbon. Events
Change log:
added in v8.3