sidebar.isCollapsed()

Is there a way to programmatically find if a sidebar is collapsed? Kink of isCollapsed() ?

Hello, @FrankVogel

As a solution, each time when you toggle the sidebar you could check whether this sidebar is collapsed.

if($$("$sidebar1").config.collapsed){}

Please, check the snippet here: Code Snippet

Thank you Alena, I will give this a try.