Open and close browser tab using webix

How can i open a url in new browser tab and also how can i close opened tab using button click in webix

Unfortunately, it’s not related to Webix. We don’t have specific API for this case. But you can use Javascript methods, window.open and window.close.

window.open returns an error that open is not a function.

It is possible that you have a local variable named as “window” and code just can’t call method of the real “window” object

Try to use top.open instead