The Character class

2010-09-19 Thread Kasper Hansen
How do I know which functions are implemented in GWT's client side classes ? For instance, I was using the Character class, and realized that some functions were missing, and the GWT compiler complained about it... If I had know that before I started coding, I might have designed my classes

Re: GWT and concurrency

2010-09-19 Thread Johannes Lehmann
I appreciate that with JavaScript interpreters executing in one thread there will never be any *true* concurrency. However it seems perfectly possible for concurrency issues to arise with the way that asynchronous callbacks are used A simple example is if I am continuously checking the value of a

Re: HTTP query string when tested in development mode

2010-09-19 Thread hezjing
Hi rjcarr The query string is still null after I set to ...Dummy.html?debug=2param=2 gwt.codesvr=127.0.0.1:9997http://127.0.0.1:/Property123.html?gwt.codesvr=127.0.0.1:9997 . The same problem occurs with the default development mode URL like

Re: Return permutation directly from the server without selection script.

2010-09-19 Thread Slava Lovkiy
Can you please demonstrate how this technique should be used to save that extra request from host page? (i.e. what other components needs to be added to implement solution from google wave guys) On Sep 18, 12:46 am, Etienne Lacazedieu etienne.lacazed...@gmail.com wrote: I wrote such a Linker :

How to get the unexpected exception thrown by backend component on the client side

2010-09-19 Thread lin.liang
For example, when the FileNotFoundException was throw by the backend service, now I want to retrieve this exception via gwt rpc component and show its' stack trace on the client side. The problem is that the FileNotFoundException is not in the serialization whitelist, even I declare it on the

Re: How to get the unexpected exception thrown by backend component onthe client side

2010-09-19 Thread Paul Grenyer
This can be done with AOP. Are you using spring or anything like that? -Original Message- From: lin.liang birdandfis...@gmail.com Sender: google-web-toolkit@googlegroups.com Date: Sun, 19 Sep 2010 03:12:50 To: Google Web Toolkitgoogle-web-toolkit@googlegroups.com Reply-To:

Re: GWT and concurrency

2010-09-19 Thread Stefano Ciccarelli
There is no preemption. The events are polled when the thread is idle and in your example the thread is not idle because is stuck in your endless and freezing cycle. On Sunday, September 19, 2010, Johannes Lehmann johannes.lehma...@googlemail.com wrote: I appreciate that with JavaScript

Re: Error compiling GWT source code from trunk

2010-09-19 Thread Ashton Thomas
Anyone know the answer to this? On Sep 14, 12:34 am, hezjing hezj...@gmail.com wrote: H ... I think I have already checked-out the full source code from trunk now, but the same compilation error still exist :-( I must be missing something here, can someone please help? On Tue, Sep

Re: GWT and concurrency

2010-09-19 Thread Blagoja Chavkoski
Hi, As Stefano wrote...ur loop will never end..:) and no other cycle can be executed. This is a concurrency topic and threading, try to create in java(or any other language) a thread with while(true) do something, and try to confine some other thread(some other work) to be done on this thread...

Re: Parameters in gwt.xml File?

2010-09-19 Thread Evan Ruff
Andy, thanks for the response. What I'm trying to accomplish is 100% independence between the generator in my first project and the implementing project. My plan is, that if I can get an externally defined string in to my project, to use reflection to get the class. Thanks! E On Sep 19,

GWT Mosaic 2.0 M2

2010-09-19 Thread georgopoulos.georg...@gmail.com
Hi all, this is the first release for testing purposes of GWT Mosaic 2g: http://code.google.com/p/gwt-mosaic/wiki/GWTMosaic2g GWT Mosaic 2g will use a scene graph (not exactly a port of GRIN like in http://code.google.com/p/gwt-grin/ but more like JavaFx). With this version you can experiment

Re: GWT designer mVp

2010-09-19 Thread Eric Clayberg
Thank you for you comments. I will respond inline below... On Sep 17, 1:13 am, marius.andreiana marius.andrei...@gmail.com wrote: I'd like to add one more note to the comment below. GWT Designer seems now a tool for engineers, which don't want to learn all UiBinder tags or simply want to write

Organizing GWT modules

2010-09-19 Thread har_shan
Am starting a new GWT based project (and quite new to it) and currently looking for ways to organize multiple projects (aka modules) better (from js code size download perspective). If a module A depends on module B (of course, i have to inherit it) and if module A is gonna use only very limited

Re: GWT designer mVp

2010-09-19 Thread John
On Sun, Sep 19, 2010 at 10:08 AM, Eric Clayberg clayb...@google.com wrote: We actually had quite a few on-line flash demos for GWT Designer at Instantiations. We need to create new ones now that we are part of Google. Eric, are those flash demos available anywhere (even if outdated)? John --

Re: The Character class

2010-09-19 Thread Jim Douglas
Here's the documentation for Java library classes emulated in the GWT client: http://code.google.com/webtoolkit/doc/latest/RefJreEmulation.html You can browse the source code here: http://www.google.com/codesearch/p?hl=en#A1edwVHBClQ/user/super/com/google/gwt/emul/java/lang/Character.java If

Re: Parameters in gwt.xml File?

2010-09-19 Thread Thomas Broyer
On Sep 19, 6:09 am, Evan Ruff evan.r...@gmail.com wrote: Hey guys, I have a generator that I'd like to configure with some parameters in the gwt.xml file. Is there any way I can do that? If so, how does one go about defining them in the gwt.xml and then looking up the parameter in the

Re: Error compiling GWT source code from trunk

2010-09-19 Thread Thomas Broyer
On Sep 19, 3:13 pm, Ashton Thomas ash...@acrinta.com wrote: Anyone know the answer to this? On Sep 14, 12:34 am, hezjing hezj...@gmail.com wrote: H ... I think I have already checked-out the full source code from trunk now, but the same compilation error still exist :-( I must be

Re: How to get the unexpected exception thrown by backend component onthe client side

2010-09-19 Thread 全能
Yes, I use spring ioc container to manage the lifecycle of beans. Could you tell me in details, Paul? Thanks! 2010/9/19 Paul Grenyer paul.gren...@gmail.com This can be done with AOP. Are you using spring or anything like that? -Original Message- From: lin.liang

MVP pattern and dynamic widgets

2010-09-19 Thread Sydney
My question is related to the MVP pattern. I have a VerticalPanel in which I add several CheckBox. The UI is build on the fly since it depends on the user settings. The user clicks some of the checkboxes and in my presenter I would like to know which one are selected. What should I put in my view

Re: Error compiling GWT source code from trunk

2010-09-19 Thread hezjing
Hi Ashton I have successfully compiled the GWT source codes from the trunk. 1) Install a Windows standalone command line Subversion package http://www.sliksvn.com/en/download/ 2) Check out the GWT tools: cd C:\gwt svn checkout http://google-web-toolkit.googlecode.com/svn/tools/ tools 3) Check

Re: how do i do Gadget read/write file?

2010-09-19 Thread nacho
1) Let the user upload a file to your server and then parse it. 2) Create a file in your server and send it to the browser so the user can download it. On 14 sep, 22:50, Alex monsterno...@gmail.com wrote: 1)How do i read a file in client side, i want my gadget to read a file and parse it.

change the style of the parent tag

2010-09-19 Thread Pinzine
Hi, I need to change the style of the parent tag for the mouseover events. In the below code i want to change the style oh h2 element. if i used the link1.getParent() it returns the style1 and not the style for h1. Any idea to resolve this issue Sample code : g:HTMLPanel styleName=style1 h2

Re: GWT and concurrency

2010-09-19 Thread nacho
I don't jnow if this is what you are searching but http://download.oracle.com/javase/1.5.0/docs/api/java/util/ConcurrentModificationException.html is in the jre emulation http://code.google.com/intl/es-CL/webtoolkit/doc/1.6/RefJreEmulation.html On 19 sep, 10:53, Blagoja Chavkoski

[gwt-contrib] Re: Introduce RequestFactory#getEventBus, make RFEditorDriver use it, fix (issue896801)

2010-09-19 Thread rjrjr
http://gwt-code-reviews.appspot.com/896801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Introduce RequestFactory#getEventBus, make RFEditorDriver use it, fix (issue896801)

2010-09-19 Thread rjrjr
Submitting patch 1 per offline LGTM from Rodrigo. Will start a fresh issue limited to patch 2. On 2010/09/19 10:54:44, rjrjr wrote: http://gwt-code-reviews.appspot.com/896801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Introduce RequestFactory#getEventBus, make RFEditorDriver use it, fix (issue896801)

2010-09-19 Thread rchandia
http://gwt-code-reviews.appspot.com/896801/diff/3001/2008 File user/src/com/google/gwt/app/place/AbstractProxyEditActivity.java (right): http://gwt-code-reviews.appspot.com/896801/diff/3001/2008#newcode46 user/src/com/google/gwt/app/place/AbstractProxyEditActivity.java:46: * @param P the type

[gwt-contrib] Re: Introduce RequestFactory#getEventBus, make RFEditorDriver use it, fix (issue896801)

2010-09-19 Thread rjrjr
Thanks, Rodrigo. Fixing the nits, but as I mentioned offline, I'm going to hold off on the remnant here until I fix the fundamental oops, creation places don't work now that we've moved entirely to EntityProxyId. http://gwt-code-reviews.appspot.com/896801/diff/3001/2008 File

[gwt-contrib] Re: Introduce RequestFactory#getEventBus, make RFEditorDriver use it, fix (issue896801)

2010-09-19 Thread rjrjr
http://gwt-code-reviews.appspot.com/896801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Migration from Long IDs to String IDs (issue898801)

2010-09-19 Thread rjrjr
LGTM On 2010/09/19 22:53:22, rchandia wrote: http://gwt-code-reviews.appspot.com/898801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] SimpleFoo now allows real creates and lookups. (issue900801)

2010-09-19 Thread rjrjr
Reviewers: pdr, Description: SimpleFoo now allows real creates and lookups. Please review this at http://gwt-code-reviews.appspot.com/900801/show Affected files: M user/test/com/google/gwt/requestfactory/client/RequestFactoryTest.java M

[gwt-contrib] Re: SimpleFoo now allows real creates and lookups. (issue900801)

2010-09-19 Thread pdr
LGTM http://gwt-code-reviews.appspot.com/900801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8821 committed - SimpleFoo now allows real creates and lookups....

2010-09-19 Thread codesite-noreply
Revision: 8821 Author: gwt.mirror...@gmail.com Date: Sun Sep 19 19:21:59 2010 Log: SimpleFoo now allows real creates and lookups. Review at http://gwt-code-reviews.appspot.com/900801 Review by: p...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8821 Modified:

[gwt-contrib] Re: Adds support for List collections. Request methods are now permitted to return (issue893801)

2010-09-19 Thread mmendez
The patch did not apply cleanly. I went through and tried to provide some feedback anyway. http://gwt-code-reviews.appspot.com/893801/diff/16001/17001 File user/src/com/google/gwt/requestfactory/client/impl/AbstractJsonProxyListRequest.java (right):