Close Event thrown before click event ?

2013-03-13 Thread Dominic Warzok
** Hey, I have a button which shows a DialogBox when you click on it. But if you click on the button while the DialogBox ist shown. It will be closed and then open again. It seems that the closeEvent of the DialogBox is thwrown before the clickEvent on the button. So if you check

Re: com.google.gwt.user.client.rpc.StatusCodeException: 500 The call failed on the server; see server log for details only when running on external server in Myeclipse

2013-03-13 Thread Thomas Broyer
Try upgrading to 2.5.1, there have been a few fixes to GWT-RPC. On Wednesday, March 13, 2013 3:39:11 AM UTC+1, svkirans wrote: I am using GWT 2.5 On Wed, Mar 13, 2013 at 2:04 AM, Andrew Phillips theamp...@gmail.comjavascript: wrote: What version of GWT are you using? On Tuesday,

Re: Java7 Langauge Feature Support

2013-03-13 Thread Thomas Broyer
On Tuesday, March 12, 2013 4:28:42 PM UTC+1, Stefan McDaniel wrote: The company I work for uses GWT in a fashion that allows us to reuse logic that was originally run only on the server. Since this server code changes over time, and the company updates to the latest version of Java fairly

GWT rendering in differing browser

2013-03-13 Thread nalini . kar
The look feel of my application works fine with IE 8 9... But with IE 10 Chrome latest version FireFox latest version... (guess all versions of Chrome FireFox). there is a slight difference ... i.e the panel at the end gets cut. I know that its because I use CSS... Is there a way to

Re: GWT rendering in differing browser

2013-03-13 Thread Jens
Is there a way to get rid of it. ? Yeah, make your CSS right. If you use ClientBundle you can use conditional CSS if you need to: https://developers.google.com/web-toolkit/doc/latest/DevGuideClientBundle#Conditional_CSS -- J. -- You received this message because you are subscribed

Re: seedTable error in web mode?

2013-03-13 Thread Ed
Upgrading to 2.5.1 same to solve this issue.. Op dinsdag 12 maart 2013 14:44:13 UTC+1 schreef Ed het volgende: My gwt app 2.5.0 doesn't work well in web mode (it does in dev mode) and it keeps showing me the following error in the browser console: --- TypeError:

Re: Change url of dispatcher

2013-03-13 Thread Musicman75
Hello, My imports: import net.customware.gwt.dispatch.client.DispatchAsync; import net.customware.gwt.dispatch.client.standard.StandardDispatchAsync; My dispatcher: private final static DispatchAsync dispatch = new StandardDispatchAsync( new DefaultExceptionHandler() ); Execute the server

Re: Code Coverage

2013-03-13 Thread darkling
Do you mean you're using the surefire test goal or the gwt:test goal? I've spent a few days trying to get either working without much luck. I haven't been using maven to run my tests in the past (because I don't want them package into the war and increasing the size of the war) now I'm

Re: Celltable loading state

2013-03-13 Thread Adam
This works for me as well with DataGrid and AsyncDataProvider and 2.5rc1. I'll take hackish over not showing the loading indicator at all. Thanks guys. On Tuesday, May 15, 2012 12:38:35 PM UTC-4, Jens wrote: You need to make sure that the cell-widget thinks the current page size is

how to upload image using gwt

2013-03-13 Thread Raghu rao
Hi I am new to GWT and want to know how to upload image in Login registration form using gwt. Thanks in advance. Raghu -- 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,

Re: Debug Id (or equivalent) for CellTable elements?

2013-03-13 Thread Plamen Veselinov
Hello Jacob, I am facing the same issue here. I want to use the source easy testing via WebDriver. I share the same opinion as yours. Did you manage to find a solution yet? On Friday, January 25, 2013 4:56:37 PM UTC+2, jacob@gmail.com wrote: Unfortunately that isn't a real possibility

Missing header information (X-GWT-Permutation) - http1.1/1.0 when using ssl-gateway

2013-03-13 Thread Taste
Hi at all, I have a little bit tricky problem with my GWT-application when calling my webapp in a specific way... 17.12.2012 15:03:55 org.apache.catalina.core.ApplicationContext log SCHWERWIEGEND: Exception while dispatching incoming RPC call java.lang.SecurityException: Blocked request without

Re: Could not load GWT DMP Plugin

2013-03-13 Thread Constantino
Hi, I am using: Microsoft Windows XP [Version 5.1.2600] Chrome: 25.0.1364.172 m GWT Developer Plugin 1.0.11357 and it still does not work. I have found that the call do init(window) does not work and no connection is established. -- You received this message because you are subscribed

Re: Debug Id (or equivalent) for CellTable elements?

2013-03-13 Thread jacob . weber36
Plamen, What we ended up doing was wrapping the cell table elements in a div, setting the ID in the same way as we would have called .ensureDebugId(). This is possible by overriding the Column's onRender method in the following way: final ColumnT, Boolean checkColumn = new ColumnT,

Re: Could not load GWT DMP Plugin

2013-03-13 Thread Constantino
I have also tried to remove the plug-in and re-install it from the store, but with no help. I am using the address 127.0.0.1 and even tried to add this to the configuration. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe

Re: Could not load GWT DMP Plugin

2013-03-13 Thread Constantino
After setting bindAddress to 0.0.0.0 and using the non 127.0.0.1 address it worked after adding the other address to the plug-in configuration. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

Trigger button on ENTER inside a TextBox?

2013-03-13 Thread membersound
Hi, I have a popup with a bunch of TextBox and TextArea fields. Also 3 Buttons like Save, Cancel, Reset. For the TextBoxes I would like to trigger the Save action if ENTER is hit while inside a TextBox (not for the TextAreas). Would I have to register a KeyDownHandler for all the TextBoxes

Re: Close Event thrown before click event ?

2013-03-13 Thread membersound
If you don't find a fix you could make the popup modal so that clicks on the show-popup button are not possible. Either you could set the button to disabled while popup is showing, register a CloseHandler on the popup and re-enable the button again when CloseEvent occurs. -- You received this

Re: how to upload image using gwt

2013-03-13 Thread membersound
Take a look at the FileUpload Widget, and on how to make RPC calls to the server. -- 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

Architecture Diagram

2013-03-13 Thread nalini . kar
Is there any architecture diagram with GWT Designer,GWT RPC,Hibernate, (a representation of flow) I could not get any technology stack too for GWT If someone knows, could help me out. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Trigger button on ENTER inside a TextBox?

2013-03-13 Thread Jens
Do you use UiBinder for the DialogBox content widget? If so you can add more than one widget to @UiHandler: @UiHandler({box1, box2, box3}) void maybeTriggerSave(KeyUpEvent event) { //check for ENTER and trigger save } Without UiBinder the above is equivalent to: KeyUpHandler

Re: Trigger button on ENTER inside a TextBox?

2013-03-13 Thread K vfdsdfbsdb
sure you must add keyListener for all TextBox . But if you create one method,it 's smart. example for private void addListeners(ListTextBox textboxs ,Listener listener){ for(int i=0;itextboxs.size;i++){ textboxs.get(i).addKeyListener(listener); } } 2013/03/14 7:02 membersound

Re: Architecture Diagram

2013-03-13 Thread K vfdsdfbsdb
I have been finding it still now too . therefore I had use with dojo lib. but I stoped it why require many DTOobject. finally i use my original framework that communicate client and server with DataOrientArchitecture that implement MapString,String. 2013/03/14 7:48 nalini@googlemail.com: Is

SuperDev mode and changing RPC strong names causes problems

2013-03-13 Thread kabram
Our setup is as follows: - Server code runs in a tomcat instance. Our ant build process compiles and sets up the server war. As part of the build, GWT is also built. - We compile the client side code in dev-mode or super-dev mode. Symptom: - As soon as we make changes to the client

Async call returning and executing before calling method finishes in Dev mode?

2013-03-13 Thread GWTter
Hi all, I have a situation where, although extremely rare and really should only arise while debugging, one of my Async calls returns and executes its callback before the calling function/main loop is done with its execution. This has only been done in Dev mode and not prod. Now I know (or at

Re: GWT 2.5.1 now available

2013-03-13 Thread jduffy
Thank you to all the GWT contributors for this new release. Keep up the great work! Has 2.5.1 been posted to the Eclipse update site yet? When I check for software updates in Eclipse it says that none are available.. Should it automatically update from 2.5.0 to 2.5.1? On Monday, March 11,

[gwt-contrib] Change in gwt[master]: Run JsInliner only on methods that are JSNI or that contain ...

2013-03-13 Thread Roberto Lublinerman
Hello Ray Cromwell, Brian Slesinsky, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/1930 to look at the new patch set (#7). Change subject: Run JsInliner only on methods that are JSNI or that contain JSNI calls (not on the whole AST).

[gwt-contrib] Change in gwt[master]: Run JsInliner only on methods that are JSNI or that contain ...

2013-03-13 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: Run JsInliner only on methods that are JSNI or that contain JSNI calls (not on the whole AST). .. Patch Set 7: I gave it another go and not it should

[gwt-contrib] Change in gwt[master]: Avoid running JsInliner on the full JavaScript tree.

2013-03-13 Thread Roberto Lublinerman
Hello Ray Cromwell, Brian Slesinsky, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/1930 to look at the new patch set (#8). Change subject: Avoid running JsInliner on the full JavaScript tree.

[gwt-contrib] Change in gwt[master]: Avoid running JsInliner on the full JavaScript tree.

2013-03-13 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: Avoid running JsInliner on the full JavaScript tree. .. Patch Set 7: (3 comments) File

[gwt-contrib] Change in gwt[master]: Avoid running JsInliner on the full JavaScript tree.

2013-03-13 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Avoid running JsInliner on the full JavaScript tree. .. Patch Set 8: (1 comment) File

[gwt-contrib] Change in gwt[master]: Avoid running JsInliner on the full JavaScript tree.

2013-03-13 Thread Roberto Lublinerman
Hello Ray Cromwell, Brian Slesinsky, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/1930 to look at the new patch set (#9). Change subject: Avoid running JsInliner on the full JavaScript tree.

[gwt-contrib] Change in gwt[master]: Avoid running JsInliner on the full JavaScript tree.

2013-03-13 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: Avoid running JsInliner on the full JavaScript tree. .. Patch Set 8: (1 comment) File