how is panel fullscreen in dashboard?

https://snippet.webix.com/gzkzg67a

I think i click icon:“mdi mdi-arrow-expand”, the panel full screen.

https://snippet.webix.com/7qszc0if
it can fullscreen,but when it exit fullscreen,i think toolbar is show.

https://snippet.webix.com/k2mei35c
it can show toolbar,But borderline is not show.

Hey @eric, this looks like a bug, thanks for reporting!

The border width seems to be resetting for some reason in your case with a combination of webix.fullscreen and showing/hiding the toolbar. As a workaround, you can force the border-width to stay the same regardless of this by setting the attribute directly: https://snippet.webix.com/k4d12t29.

hi,
webix.fullscreen.set($$(“panel3”),{head:{
view:“toolbar”,elements:[
{template:“close”},
{view:“icon”,icon:“mdi mdi-fullscreen-exit”,click:function(){
$$(“mytoolbar”).show();
$$(“panel3”).getNode().setAttribute(“style”, “border-width: 1px”);
webix.fullscreen.exit();
}}
]
}});

the code in really the environment,click icon:“mdi mdi-fullscreen-exit”, report error:

myapp.js:9342 Uncaught RangeError: Maximum call stack size exceeded
at MyApp.copyConfig (myapp.js:9342)

webix jet update 2.1.2 , it is OK

I still have the same issue with dashboard panels.
When it will be fixed?

Hello, @sergeyplishka

Unfortunately, we have to admit that the problem still exists. As soon as it would be solved we let you know. Currently, please, try to use something like: Code Snippet

Thank you.