Problem with GWT 2.5.1 + FF 40

2015-10-02 Thread André
Hello GWT users! We still use GWT 2.5.1 and can't update it quickly. Firefox v41 was released last week and came with this seemingly minor modification that makes our app unusable. Looks like this isn't

Re: GWT DataGrid does not display, CellTable does

2015-10-02 Thread Juan Pablo Gardella
try set height in pixels On 1 October 2015 at 18:14, Patrick May wrote: > My application consists of a SplitLayoutPanel that has a StackLayoutPanel > with two menu selections on the left and a DeckLayoutPanel on the right. > The DeckLayoutPanel has two subpanels, one a

Re: Problem with GWT 2.5.1 + FF 40

2015-10-02 Thread André
Thanks for the quick reply Daniel! As a short term fix I added to my App.gwt.xml which seems to fix our problems as it doesn't override decodeFragment(). As a long term solution I'll attempt an upgrade to 2.7.0. Cheers André On Friday, October 2, 2015 at 10:23:08 AM UTC+2, Daniel

Re: two widgets communication

2015-10-02 Thread Luca Morettoni
On Fri, Oct 2, 2015 at 11:44 AM, naveen gayar wrote: > Hi > > I have widget on the left side and the widget on the right side. When i > click the button in the left side, it should change the content in the right > side widget. this article could be a good start:

Re: Problem with GWT 2.5.1 + FF 40

2015-10-02 Thread Daniel Kurka
This has been fixed in GWT 2.7.0. We refactored the history implementation to not special case Firefox in this particular way. Just updating to GWT 2.7 will fix this issue for you. If that is not possible here is the main patch to make history work: https://gwt-review.googlesource.com/#/c/5356/

Re: Ongoing discussion of Jetty problems in Eclipse with 2.6.1-rc2 (issue #8526)

2015-10-02 Thread Kevin Wilson
Hello I have this problem when I try to start my local host (127.0.0.1) Could not find required bundle org.eclipse.jetty.webapp. Would you happen to know where I might download and install this missing bundle? Kevin On Tuesday, May 6, 2014 at 12:23:42 PM UTC-6, pron...@gmail.com wrote: > >

two widgets communication

2015-10-02 Thread naveen gayar
Hi I have widget on the left side and the widget on the right side. When i click the button in the left side, it should change the content in the right side widget. Thanks navjyothi -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To

Re: GWT DataGrid does not display, CellTable does

2015-10-02 Thread Thomas Broyer
On Friday, October 2, 2015 at 1:14:34 AM UTC+2, Patrick May wrote: > > My application consists of a SplitLayoutPanel that has a StackLayoutPanel > with two menu selections on the left and a DeckLayoutPanel on the right. > The DeckLayoutPanel has two subpanels, one a SimpleLayoutPanel

Re: GWT DataGrid does not display, CellTable does

2015-10-02 Thread Patrick May
On Friday, October 2, 2015 at 9:48:59 AM UTC-4, Juan Pablo Gardella wrote: > > try set height in pixels > > I'll give it a try, but that's not really a robust approach. GWT should be able to calculate the area it needs. Setting explicit sizes seems error prone and inelegant. Thanks for the

Re: GWT DataGrid does not display, CellTable does

2015-10-02 Thread jaga
I'd try placing each widget in its own container and showing hiding the containers rather than the tables. If you use a layoutpanel as a container for each container then you can call LayoutPanel.setWidgetVisible(). -- You received this message because you are subscribed to the Google Groups

Re: GWT DataGrid does not display, CellTable does

2015-10-02 Thread Patrick May
On Friday, October 2, 2015 at 12:15:05 PM UTC-4, Thomas Broyer wrote: > > > All subpanels have their height and width set to 100% by their containing >> panels. >> > > Don't do that. ProvidesResize panels do set the size of their children. > Thanks for the pointer. I removed all of those. >

Re: GWT DataGrid does not display, CellTable does

2015-10-02 Thread Patrick May
On Friday, October 2, 2015 at 9:48:59 AM UTC-4, Juan Pablo Gardella wrote: > > try set height in pixels > Okay, I tried that and the data still doesn't appear. However, I resizing the browser window, even with the 100% height, does cause the data to appear. Calling the DataGrid's onResize()