Fullscreen problem

Hi,
I have webix page with a footer,and I have given “fullscreen:true” but when the page is loading the footer is coming in the top,giving the path
http://webix.com/snippet/a060b9c7

If I am setting height it is coming properly,but I don’t want to set the height,it should be responsive in any screen size
http://webix.com/snippet/1eda6d87

Hi,

footer is DataTable property. This property can not be applied to other views. Also “fullscreen” property is a property of Window and can not be applied to Layout.

The layout height can not be bigger than the total height of its rows. You need to add an empty row before footer row. In this case you will get the desired result:

http://webix.com/snippet/3b716aaa

You need to have some view without fixed height, to take a free space in the middle of the screen.

Please check the updated snippet, I have added the spacer

http://webix.com/snippet/7cc31980

I added the spacer,when I loading the page first time it is working fine.But
I have buttons in the footer ,upon clicking the button UI have to change and only left side list has to come, but it is not working the footer coming up
http://webix.com/snippet/c8342744

If you have a fixed height defined for all element, the parent view will try to adjust self to this value. if you want to use full height of the window, you need to have a scrollview or some view without height defined.

http://webix.com/snippet/35830ac7

Spacer was added at line 343