Hi,
How to trigger a click to a button after specific timeout?
https://webix.com/snippet/4520ce54
In jQuery I just need to call $(id).click();
How to do it in webix? I’ve tried triggerEvent() but not working.
Hi,
How to trigger a click to a button after specific timeout?
https://webix.com/snippet/4520ce54
In jQuery I just need to call $(id).click();
How to do it in webix? I’ve tried triggerEvent() but not working.
Hi,
triggerEvent
requires the node of the input as the 1st parameter.
Also, you can use onItemClick
and callEvent:
Okay… It’s working now. Thanks