How to close all message boxes with one command without their ids?

Is there some method to close/destroy all created message boxes (using webix.message and so on)?

webix.message.hideAll(); should do the trick
for modal boxes (alert, confirm etc) use webix.modalbox.hideAll();

1 Like

Thanks!!! Have a great day!!!