Re: (Gwt Bootstrap) Split Layout Panel has an issue when I use that in a BootStrap container

2015-08-31 Thread Ümit Seren
AFAIK Container does not implement ProvidesResize which will cause an issue when you embed a LayoutPanel in it. I would also recommend against combining responsive Bootstrap Panels with LayoutPanels. But if you really want to do it, then you can try to put your SplitLayoutPanel inside a

Re: (Gwt Bootstrap) Split Layout Panel has an issue when I use that in a BootStrap container

2015-08-31 Thread Dhinakar
This is my code .blueColor { background-color: #87CEEB; } .greenColor { background-color: #9ACD32; } .redColor { background-color: red; } .yellowColor { background-color: yellow; } .tanColor { background-color: tan; }

Re: (Gwt Bootstrap) Split Layout Panel has an issue when I use that in a BootStrap container

2015-08-30 Thread Jens
You better ask the Bootstrap guys. But I am pretty sure it is just a CSS issue that you can probably easily solve by using your browsers DevTools to figure out whats wrong. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

(Gwt Bootstrap) Split Layout Panel has an issue when I use that in a BootStrap container

2015-08-30 Thread Thomas Broyer
Does the container implements ProvidesResize? Otherwise, are you sizing the SplitLayoutPanel explicitly? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to

(Gwt Bootstrap) Split Layout Panel has an issue when I use that in a BootStrap container

2015-08-30 Thread Dhinakar
I can see only the North dragger visible when I add the SplitLayoutPanel in the bootstrap container. Is there any alternative solution to resolve the problem? I need to have east and west panels with draggers for the application I am building in bootstrap. Is there any solution for that? --