enrico
January 18, 2015, 10:29pm
1
Hi.
The horizontal display is correct (rows= horizontal position):
example 1
http://webix.com/snippet/0cd41bb4
If the display is vertical the table is compressed (cols = vertical position).
example 2
http://webix.com/snippet/49681a6d
Which is the correct way to fully display, buttons, templates and the table?
Thank you in advance for your help
maksim
January 19, 2015, 7:39am
2
Problem is in autosizing. You are mixing elements with fixed height and auto height in one row. While button has default height, table has not any height defined, so it accepts the height of button.
Just set some height ( min-height ) for the datatable
http://webix.com/snippet/3184c6e6
Or disable default height on the button
http://webix.com/snippet/5623b35e
Or use a more complex layout
http://webix.com/snippet/457ca729
enrico
January 19, 2015, 8:32am
3
Solution applied .
Thanks for your quick and accurate response …
I did not know the syntax " { } " .
maksim
January 19, 2015, 9:32am
4
{}
creates an empty view, that doesn’t render anything, just takes the free space.