Datatable / layout view issues

Hi,

I made this snippet with a test scenario: http://webix.com/snippet/8a86ca99. There’s a number of issues I find odd with this layout definition:

  1. I define minHeight as 400. But doesn’t seem to have an effect?

  2. Why would the groups table have 3 rows like the users table?

  3. See what happens when changing groupsview autoheight to false (or remove that property)

  4. See what happens when changing usersview autoheight to false

  5. See what happens when changing sorting on either table

Help appreciated, thanks!

  1. The grid actually has 2 rows and some empty space
    You have 2 datatables with autoheight mode enabled. During sizing parent layout takes the max height from 2 autoheight components, and smaller one adjust self to that height.

  2. Same as above. The layout takes size based on usersview and groupsview adjust self to that size.

  3. Similar, but not layout takes size of groupsview ( as usersview has not not height, nor autoheight enabled ) and groupsview adjust self to that size

(1) and (5) this one is a bug. minHeight on layout really works strange in combination with component’s autoheight. It will be fixed in the next build.