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