save open tabs

is there any way to save the open tabs so that when updating the page, the same open tabs return ?

Hello @Tarcantos ,

Here you can look through the information about Saving and Restoring Component.
To save application state you can via get/setState method:

  webix.attachEvent("unload", function(){
    webix.storage.local.put("stateTabs", webix.UIManager.getState("tabs", true));
  });
  var stateTabs = webix.storage.local.get("stateTabs");
  if(stateTabs)
    webix.UIManager.setState(stateTabs);
});

Please check the next snippet:
https://snippet.webix.com/0gkimscf

thank you so much @annazankevich