How to resize the layer of a DeckLayoutPanel when showing the layer after it has been hidden

2015-07-24 Thread rkvaja
Hi, I need to resize the contents of layer within my decklayoutpanel after the layer is shown but can not find a way to achieve this. Does anybody have an idea on how I can do this? Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: gwt-maven-archetypes multiple project setup

2015-07-24 Thread Thomas Broyer
On Friday, July 24, 2015 at 2:33:22 PM UTC+2, William Davis wrote: Will the gwt-lib projects work with incremental compile or will I have to stop the dev mode, rebuild the library, and run again? One of the goals of net.ltgt.gwt.maven:gwt-maven-plugin was to properly support multimodule

Re: gwt-maven-archetypes multiple project setup

2015-07-24 Thread William Davis
That is great news! I hope I can get your much appreciated assistance to help me figure out what I am doing wrong, because as of right now it isn't working for me. I am sure there is something I haven't configured properly so let me show you what I have. I am using the modular-webapp for the

Celltable keep selection after updateRowData

2015-07-24 Thread Manuel
Hi everyone, I use the gwt celltable and get a problem, when reloading data: Im using single selection model with it. So after the celltable is loaded the first time, the data is displayed (9 records). I select one row and reload the data via a button. The data gets fetch from server and

Re: Celltable keep selection after updateRowData

2015-07-24 Thread Manuel
I had a look at my styles for the celltable. It appears that after the reload, the celltable sets the following styles on the selected row: .cellTableKeyboardSelectedRow, .cellTableSelectedRow While clicking on another row the cellTableKeyboardSelectedRow is set to the new row, the

Re: Celltable keep selection after updateRowData

2015-07-24 Thread Manuel
I removed keyboard-styles from the css and keep the default selectionModel instead setting a singleSelectionModel to the celltable. Now it works... Regards, Manuel -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this

Re: gwt-maven-archetypes multiple project setup

2015-07-24 Thread Thomas Broyer
On Friday, July 24, 2015 at 3:06:22 PM UTC+2, William Davis wrote: That is great news! I hope I can get your much appreciated assistance to help me figure out what I am doing wrong, because as of right now it isn't working for me. I am sure there is something I haven't configured properly

Re: Celltable keep selection after updateRowData

2015-07-24 Thread Jens
setKeyboardSelectionPolicy(KeyboardSelectionPolicy.BOUND_TO_SELECTION) should work. Keyboard selections are then the same as SelectionModel selections. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group

Re: gwt-maven-archetypes multiple project setup

2015-07-24 Thread Thomas Broyer
On Friday, July 24, 2015 at 4:13:45 PM UTC+2, William Davis wrote: I think I figured something out. In the base project, in the parent pom, I only defined the three modules in that project like this: modules modulebase-client/module modulebase-shared/module

Re: gwt-maven-archetypes multiple project setup

2015-07-24 Thread William Davis
I think I figured something out. In the base project, in the parent pom, I only defined the three modules in that project like this: modules modulebase-client/module modulebase-shared/module modulebase-server/module /modules but I changed it to add the client library like this:

Re: Jwebsocket for GWT

2015-07-24 Thread Gilberto
You'd have a better luck in this list asking in English instead of Portuguese. A quick Google search gave me this: http://jwebsocket.org/jwsForum219/posts/list/115.page and this http://avricot.com/blog/index.php?post/2010/09/08/Introducing-jwebsocket-and-its-RPCPlugin On Friday, July 24,

Re: GWT-RPC: hacked attempt on request payload.

2015-07-24 Thread jaga
The module approach looks interesting. An alternative is to override the method on the rpc servlet which handles this part. Then trap the error and return a string of your choice. The method will be the one which handles the deserialisation in the RemoteServiceServlet. Possibly

Re: class file has wrong file version 51.0, should be 49.0

2015-07-24 Thread frank ho
I didn't use Maven. On Thursday, June 18, 2015 at 9:07:22 PM UTC+8, Jens wrote: what I am missing? Maven should also use Java 1.7 for compilation, not just the IDE. I would guess Maven uses the JAVA_HOME environment variable which might still point to Java 5. -- J. -- You

Re: gwt-maven-archetypes multiple project setup

2015-07-24 Thread William Davis
Will the gwt-lib projects work with incremental compile or will I have to stop the dev mode, rebuild the library, and run again? On Thursday, July 23, 2015 at 3:58:16 PM UTC-4, Thomas Broyer wrote: If it's reusable then it's a gwt-lib, not a gwt-app. Next, create any number of gwt-app