Sizing Vertical Layout

I have many problems for sizing layouts: in the attached code you can see the row “leftContainer.setHeight(“100%”);” and I get in the browser the first display (without the vertical bar of vertical layout but great space between HorizontalLayout on top of vertical and the table); if I cut off the row I have the second dispay (with the vertical bar - that I don’t want - but without the great space between the horizonta layout and the table).
Help please!
13180.txt (2.21 KB)
13181.png
13182.png

use your first example, and set an expandratio on the table (layout.setExpandratio(table, 1);). The layout automatically assigns the same amount of space for each component in it (in this case 50%), but you can change this with setting the expandratio yourself.

Thanks a lot. It works perfectly.