Uncaught exception gwt exception.

2013-07-29 Thread Василий Сушко
gwt problem: Help me for solve this problem. I'm use gwt version 1.7.0, when i try to start my app, it throws me exception: Uncaught exception: com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: java.lang.reflect.InvocationTargetException at

Re: Uncaught exception gwt exception.

2013-07-29 Thread Jens
please format the stack trace correctly. no one can read this wall of text. I would assume you have forgot to add a no arg default constructor to any of your serializable classes that go through GWT-RPC. -- J. -- You received this message because you are subscribed to the Google Groups

(very) small typo in online documentation

2013-07-29 Thread Rutger van der Eijk
Hi, I think I've found a very small typo on http://www.gwtproject.org/doc/latest/DevGuideCodingBasicsDelayed.html#deferred In this section the code snippet has a small typo. I.e. TextBox dataEntry; // Set the focus on the widget after setup completes.

Re: (very) small typo in online documentation

2013-07-29 Thread Boris Brudnoy
I just did: https://gwt-review.googlesource.com/#/c/3900/ BORIS BRUDNOY Web Software Developer (Careers 2.0http://careers.stackoverflow.com/brudnoy , LinkedIn http://ca.linkedin.com/in/borisbrudnoy) Founder and Application Architect, Healthometry.comhttp://www.healthometry.com/ On Mon, Jul

Re: (very) small typo in online documentation

2013-07-29 Thread salk31
The GWT folks are very helpful (and patient in my case) if you want to supply a patch? http://www.gwtproject.org/makinggwtbetter.html#webpage gerrit etc is a bit of a pain at first but OK after that. Cheers Sam -- You received this message because you are subscribed to the Google Groups

GWT mobile : Virtual keyboard hides focused input

2013-07-29 Thread Marius Grama
If, within the mobile browser (Chrome) the user taps on an input text element in order to gain focus the virtual keyboard will appear. When the phone is used in landscape mode, the keyboard will take a big part of the screen and will cover also the focused text box, even though the text box

Implementation of flextable resize row explicitly

2013-07-29 Thread parttimeanand
Hi, I want to implement a flex table whch rows height can be explicitly changable by dragging. Please help me. -- 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

Re: GWT load issues on ios 3G device

2013-07-29 Thread David Feshbach
Have you tried using the web inspector? It's really useful for debugging web apps on iOS devices. There's also a way to do it with android/Chrome using adb but I don't know it off the top of my head. Things I noticed when debugging our app that indicated the network: it worked over https but

rpc call - static methods is not working

2013-07-29 Thread fedex
Hi everyone, I am trying to define a static method in the service interface to make an rpc call. But it doesn't allow me to do so. here I am pasting my code Client class public void sendDomesticData(String product,String dma,String yrmnths,String dist,String metrics) { String url =

Re: rpc call - static methods is not working

2013-07-29 Thread fedex
sorry correction , at the end I mean the senddomesticdata method On Monday, July 29, 2013 2:17:17 PM UTC-5, fedex wrote: Hi everyone, I am trying to define a static method in the service interface to make an rpc call. But it doesn't allow me to do so. here I am pasting my code Client

Re: rpc call - static methods is not working

2013-07-29 Thread Jens
I tried changing all the senddomestic values to static but it won't allow me to do so? why? Because RemoteServiceServlet needs to invoke your service methods somehow and the implementation expects instance methods. But this shouldn't prevent you from assigning the method data to static

Re: GWT load issues on ios 3G device

2013-07-29 Thread Paul Mazzuca
I actually haven't used the web inspector. This is a huge help. So by using the web inspector, it turns out that my nocache.js is completely inlined into the html head section when using 3G via Virgin Mobile USA (Sprint), while when connecting via wifi, the nocache.js is downloaded separate,

only RPC call completes rest of my code should execute - how should I do it

2013-07-29 Thread fedex
I am storing the values in the session by making an rpc call. So, to get the values of this first the rpc call has to omplete and there by i can get the sored values and write my own condition. I can I acheive this? What condition can I have to make sure that first RPC call completes and

only RPC call completes rest of my code should execute - how should I do it - very urgent please

2013-07-29 Thread fedex
Hi everyone, I have an interface where the user selects the values and upon clicking the download button the selected values runs in the sql query and the obtained data is written to csv file. I am doing an RPC call to send the user selected values from the interface to the server. And on

Re: GWT load issues on ios 3G device

2013-07-29 Thread David Feshbach
The inlined script is running, but it's failing because it needs its own source attribute, which is removed during inlining. I just noticed you're using a different linker than me, so that may be why the baseUrl property isn't working. If your linker doesn't have a way to override the base url

[gwt-contrib] Should GWT support WebGL without Elemental ? (or should Elemental be extended to support more browsers ?)

2013-07-29 Thread Alberto Mancini
Hi, hope this is the right list for this discussion. WebGL is today supported at least by FF and, according to http://caniuse.com/webgl, also the next release of IE will support it so I wonder if should GWT support WebGL (without Elemental). As i see in previous mails in this group, and in

[gwt-contrib] Re: Add Map support to RequestFactory (issue 6132056)

2013-07-29 Thread James Horsley
I ported the CR to gerrit a couple of months back https://gwt-review.googlesource.com/#/c/3186/ Last update I got was that it's pending further review by Thomas Broyer who's currently tied up with modularization and mavenization. I'm seeing other RF changes going on though so hopefully it won't

Re: [gwt-contrib] Should GWT support WebGL without Elemental ? (or should Elemental be extended to support more browsers ?)

2013-07-29 Thread Goktug Gokdogan
Not specific to WebGL but for anything becomes part of the GWT core, we want it to first evolve and 'be proven' as a 3rd party library first (when it is feasible). On Mon, Jul 29, 2013 at 2:03 AM, Alberto Mancini ab.manc...@gmail.comwrote: Hi, hope this is the right list for this discussion.

[gwt-contrib] Client side sorting in a celltable with ListDataProvider ListHandler

2013-07-29 Thread stuckagain
Hi, I tried to discuss this in the GWT google groups, but I did not get any feedback there. I figured since this was a strange design choice in GWT that I should discuss it here: I just lost 2 hours on getting client side sorting to work correctly in my DataGrid backed by a ListDataProvider.

[gwt-contrib] Re: Client side sorting in a celltable with ListDataProvider ListHandler

2013-07-29 Thread Thomas Broyer
See (in no particular order): - https://code.google.com/p/google-web-toolkit/issues/detail?id=7072 - https://code.google.com/p/google-web-toolkit/issues/detail?id=7114 - https://code.google.com/p/google-web-toolkit/issues/detail?id=6686 (which you actually found) What change to

Re: [gwt-contrib] Should GWT support WebGL without Elemental ? (or should Elemental be extended to support more browsers ?)

2013-07-29 Thread Alberto Mancini
Actually that makes sense. I found that moving all the WebGL code off from elemental is straightforward and my first test works as expected. To proceed in the attempt of building a '3rd party' lib with the webgl-bindings taken from elemental (but based on the GWT Canvas) i need to fix