There is a lite error in the documentation of the Toolbar component here
toolbar.events.on("InputCreated", function(id, input){
console.log(id);
});
The correct name for the event is inputCreated
There is a lite error in the documentation of the Toolbar component here
toolbar.events.on("InputCreated", function(id, input){
console.log(id);
});
The correct name for the event is inputCreated
Thank you for your note. We’ll try to update the docs in the near future.
By the way, the event names are case insensitive, so you may use both variants and it will work well.
That’s right, I had never noticed that detail
greetings