Trigger button click

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:

https://webix.com/snippet/274e6e55

Okay… It’s working now. Thanks :slight_smile: