responsive

Hello,
Is there a way to have the ‘responsive’ feature hide widgets from right to left instead of starting on the left?

Thanks,
Pieter

Hello, @Pieter

There is no special option that will make a responsive feature to hide widgets from right to left.
This behavior could be achieved by hiding/showing views (from the right side) depending on available space.
This simple variant we provide you below checks whether the layout width is bigger than the screen width. In case it is bigger the very right view in the layout will be hidden, and then widths are compared again. In the opposite case, one more view will be shown and then widths will be compared.
https://snippet.webix.com/y6smbm69

There is also a possibility to create a more accurate solution with complicated calculations, where you could check if a hidden view could fit in the layout. In this case, views should have strict sizes.

Thank you