Re: Splitter not showing in SplitLayoutPanel

2017-05-25 Thread Harry Wagner
Thank you! That helps :) On Thursday, May 25, 2017 at 10:11:01 AM UTC-4, Thomas Broyer wrote: > > "Layout panels" (RequiresResize) need to be sized "from the outside" (they > don't have an "intrinsic size" depending on their content), and this means > you either need to give them an explicit,

Re: Splitter not showing in SplitLayoutPanel

2017-05-25 Thread Thomas Broyer
"Layout panels" (RequiresResize) need to be sized "from the outside" (they don't have an "intrinsic size" depending on their content), and this means you either need to give them an explicit, absolute size (i.e. no percentages or other relative units) or have an uninterruptible chain of parent

Splitter not showing in SplitLayoutPanel

2017-05-25 Thread Harry Wagner
I have inherited a GWT application that was written back in GWT's 1.x days. It has since been migrated to 2.4 but will only run in quirks mode. I am tasked with migrating it to 2.8 and making it run in standards mode. It is a challenge for me. I have years of Java experience but no GWT