inputBlur
fires when a control is blurred
inputBlur: (id: string | number) => void;
Parameters:
id: string | number
- the ID of a new control
Example
sidebar.events.on("inputBlur", function(id){
console.log(id);
});
fires when a control is blurred
id: string | number
- the ID of a new controlExample
sidebar.events.on("inputBlur", function(id){
console.log(id);
});