Re: JSON+RequestBuilder vs RequestFactory

2013-11-03 Thread m1kema
Not sure if my first question went in ... Checking to see, if you were able to come up with a resolution to your question ? We have an existing Spring MVC backend, that we would like to hook up to an GWT front-end. Have similar questions/issues in terms of how we would like to communicate with

Re: JSON+RequestBuilder vs RequestFactory

2013-11-03 Thread m1kema
Hello zixzigma, Did you ever come up with a resolution here ? I'm new to GWT, and we currently have a Spring MVC backend, that we would like to communicate with. Were you able to integrate which such a backend ? if so, which option(s) did you go with, and do you have any example of such ?

Re: Problems with super dev mode: Can't find any GWT Modules on this page

2013-11-03 Thread Greg
Hi I had similar issue lately. Important thing is that after switching to xsiframe linker you have to compile your application and use it for starting sdm. This way your app.nocache.js file will be built by that newly set linker and sdm scripts will detect it. Without that step nocache.js

Re: Logging to the server side

2013-11-03 Thread Greg
Hi You may check this first: http://www.gwtproject.org/doc/latest/DevGuideLogging.html especially this section: http://www.gwtproject.org/doc/latest/DevGuideLogging.html#Remote_Logging Then this:

Re: Issue with development mode plugin and Custom selection script / hosted.html that allows separate debugging of multiple GWT applications on a single page

2013-11-03 Thread Greg
Hi Please check this: https://groups.google.com/d/msg/google-web-toolkit/5XzZrpBjxnY/IJzN2Z6tfawJhttps://groups.google.com/forum/#!topic/google-web-toolkit/5XzZrpBjxnY On Tuesday, October 8, 2013 7:07:34 PM UTC+2, Jamie Cramb wrote: Hi all, I have a page which has multiple GWT applications

Re: SuggestBox and HasBlurHandlers

2013-11-03 Thread Patrick Tucker
Wouldn't a ValueChangeHandler be more appropriate for firing validation? -- 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

Re: java.lang.NullPointerException Error when using rpc

2013-11-03 Thread fasfsfgs
I don't think you can pass raw Object in RPC. Have you tried with String instead? On Sat, Nov 2, 2013 at 6:15 PM, zhenliang@gmail.com wrote: I'm now currently extracting out data from my database using rpc but whenever I click the button it does generates a error and my onFailure command

CellTable keyboard events troubles in Chrome

2013-11-03 Thread yves
Hi All, After a search on the internet and in this group I didn't found help for the issue I have. So I ask here if someone has any advice or workaround. I just tried basic example of CellTable found here http://www.gwtproject.org/doc/latest/DevGuideUiCellWidgets.html, and put the cellTable

Re: Determining dependencies for split points

2013-11-03 Thread Ben Klein
The solution that worked for me was to move the code from the runAsync method of split point 1 out of the runAsync call (next to it). This put the relevant code into the initial download part, where I could trace the dependency. On Monday, October 14, 2013 1:00:41 PM UTC-4, Ben Klein wrote:

Re: Determining dependencies for split points

2013-11-03 Thread Ben Klein
Correction: split point 5, not 1 -- 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 google-web-toolkit+unsubscr...@googlegroups.com. To post to this group,

Re: SuggestBox and HasBlurHandlers

2013-11-03 Thread jaga
How about extending the popup interface SuggestDisplay? You can then handle the callbacks which get fired when the popup is hidden. -- 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

Re: Native File Chooser Dialog

2013-11-03 Thread Thomas Broyer
It could be that the browser only shows the dialog when processing a user-initiated event (there was something like this introduced in Flash 10 back in the days for security reasons: http://www.adobe.com/devnet/flashplayer/articles/fplayer10_uia_requirements.html ) Try with vanilla JS, and if

Re: Implementation alternatives to improve GWT RequestFactory read and write based use cases

2013-11-03 Thread Thomas Broyer
The way RequestFactory is designed, you have to use per-request caches to ensure you only ever have one instance of a given entity within the course of the request. Using Hibernate/JPA, that means using a session-per-request (aka open-session-in-view) pattern. Are you already using it? On

Re: IntegerBox and Editor framework question

2013-11-03 Thread Thomas Broyer
You could also: - use another editor (possibly wrapping or delegating to an IntegerBox) that makes sure getValue is never 'null', or - make the parent editor a ValueAwareEditor and handle the field binding manually in the setValue() and flush() methods On Saturday, November 2,

Re: java.lang.NullPointerException Error when using rpc

2013-11-03 Thread Thomas Broyer
Looks to me like this is saying your server-side code throws a NullPointerException, so you get it on the client-side. On Saturday, November 2, 2013 9:15:37 PM UTC+1, zhenli...@gmail.com wrote: I'm now currently extracting out data from my database using rpc but whenever I click the button

Re: Event.stopPropagation() not working for KeyDownEvent

2013-11-03 Thread Thad Humphries
I've succeeded by removing the KeyDownHandler and adding this in my login widget: Event.addNativePreviewHandler(new Event.NativePreviewHandler() { @Override public void onPreviewNativeEvent(NativePreviewEvent event) { Event nativeEvent = Event.as(event.getNativeEvent()); int c =

Re: [gwt-contrib] Selection Cell Option value vs Display Value

2013-11-03 Thread Chad Vincent
I realize it's 3 years later, but since nobody had made the issue: https://code.google.com/p/google-web-toolkit/issues/detail?id=8417 On Wednesday, October 13, 2010 1:02:20 PM UTC-4, John LaBanca wrote: Users will probably want to set the ordering of the values. Letting users define the

[gwt-contrib] Re: GWT 2.6.0 will be still Ant based or already Gradle bases? (for OSGI-fy GWT)

2013-11-03 Thread Thomas Broyer
On Thursday, October 31, 2013 9:16:57 AM UTC+1, Cristiano wrote: Hi All, I would like to know if the plan for 2.6.0 is to still use Ant or release it already from Gradle. Ant. I ask this because I would to check the feasibility of OSGIfy the GWT-Servlet jar. Having an OSGi

Re: [gwt-contrib] Re: GWT 2.6.0 will be still Ant based or already Gradle bases? (for OSGI-fy GWT)

2013-11-03 Thread Cristiano Costantini
Thank you Thomas, I'm not 100% sure the fact that JDT embed other the Jar due to OSGi, it could be but I've never used that feature. And it sound weird to me as then JDT should be used in an OSGi environment (yes Eclipse is based on OSGi, but I don't think GWT Ant build starts any OSGi