How to kill all the webix.messages display ?

Hi Team ,

I am using webix.message component to display few messages with expire attribute of few seconds.

Is there any way to kill all the messages currently displayed ?

You can use webix.message.hide

var id = webix.message("some text");
...
webix.message.hide(id);