Hide a particular sheet of a spreadsheet

https://snippet.webix.com/fr98cgst

/*
It would be very useful if particular sheets of a spreadsheet could be hidden 
from view using the API.

For example:

$$("ss1").getSheet("Tab_1").define("hidden", true)

It would also be very useful if a hidden attribute could be specified in the spreadsheet view.

Any workaround would be much appreciated.
*/
webix.ui({ 
   view:"spreadsheet",
   id: "ss1", 
   data:{
        sheets: [
            {
                name: "Tab_1",
                content:{
                    data:[
                        [1,1,"Page 1"]
                    ]
                },
                hidden: true,
            },
            {
                name: "Tab_2",
                content:{
                    data:[
                        [1,1,"Page 2"]
                    ]
                }
            },
            {
                name: "Tab_3",
                content:{
                    data:[
                        [1,1,"Page 3"]
                    ]
                }
            }
        ]
    },
    bottombar:true
});

Hi @adz , you can try something like this: Code Snippet

Hi Dmitriy - many thanks for the code/solution. It works very well.
Thanks again
Adam