[gwt-contrib] Re: RPC policy files usage?

2010-02-25 Thread mmoossen
dear all! what we do is at compilation time, with ant, to move the policy files to the package of the server side implementation of the service, and to use following loader: /** * We do not want that the server goes to fetch files from the servlet context, so we keep the .gwt.prc files

[gwt-contrib] RPC Request Optimisation

2010-02-25 Thread Joe Cole
Background: We have a quite a few customers who use really unreliable internet connections [e.g. 3g connections in bangladesh]. Often times these requests can take a long time to complete if they are in a country with really poor internet, but the users keep on doing things and then requests pile

Re: [gwt-contrib] RPC Request Optimisation

2010-02-25 Thread Bart Guijt
Hi Joe, Your proxycreator sounds like a very useful addition to GWT's RPC! I did a few projects last year needing exactly this, but we created other (less ideal) workarounds to counter connection limits. If anything, put it on google code or something! Cheers, Bart Guijt On Thu, Feb 25, 2010

[gwt-contrib] Re: Issue 4027: TextBox fires JSException in IE on double click

2010-02-25 Thread jgw
On 2010/02/23 16:57:03, jlabanca wrote: LGTM. http://gwt-code-reviews.appspot.com/151804 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] RPC Request Optimisation

2010-02-25 Thread BobV
1) Would people be interested in my proxycreator patch, for potential inclusion into gwt core? 2) Does request pooling sound like it's something that would be of use in general? Is this something the gwt team would be interested in working with? Why did you go with the approach of patching

[gwt-contrib] Add support for defining ListBox items using UiBinder.

2010-02-25 Thread markovuksanovic
Reviewers: , Description: Enables support for adding items into a ListBox using UiBinder. For example: g:ListBox g:item value='1' first item /g:item g:item value='2' second item /g:item /g:ListBox Please review this at http://gwt-code-reviews.appspot.com/153804 Affected files:

[gwt-contrib] Re: Add support for defining ListBox items using UiBinder.

2010-02-25 Thread markovuksanovic
http://gwt-code-reviews.appspot.com/153804 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r7613 committed - Fixes a bug where TextBox fires JSException in IE on double click....

2010-02-25 Thread codesite-noreply
Revision: 7613 Author: jlaba...@google.com Date: Thu Feb 25 06:49:47 2010 Log: Fixes a bug where TextBox fires JSException in IE on double click. http://gwt-code-reviews.appspot.com/151804 http://code.google.com/p/google-web-toolkit/source/detail?r=7613 Modified:

[gwt-contrib] Re: Add support for defining ListBox items using UiBinder.

2010-02-25 Thread rjrjr
LGTM And this time I've actually remembered to cc contrib. One last nit below. http://gwt-code-reviews.appspot.com/153804/diff/1027/39 File user/test/com/google/gwt/uibinder/elementparsers/ListBoxParserTest.java (right): http://gwt-code-reviews.appspot.com/153804/diff/1027/39#newcode47 Line

[gwt-contrib] Re: Add support for defining ListBox items using UiBinder.

2010-02-25 Thread markovuksanovic
I'll do that as well... On 2010/02/25 19:27:10, Ray Ryan wrote: LGTM And this time I've actually remembered to cc contrib. One last nit below. http://gwt-code-reviews.appspot.com/153804/diff/1027/39 File user/test/com/google/gwt/uibinder/elementparsers/ListBoxParserTest.java (right):

[gwt-contrib] Re: Add support for defining ListBox items using UiBinder.

2010-02-25 Thread markovuksanovic
http://gwt-code-reviews.appspot.com/153804 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r7615 committed - First implementation of TreeView as a widget, without depending on Tre...

2010-02-25 Thread codesite-noreply
Revision: 7615 Author: jlaba...@google.com Date: Thu Feb 25 09:18:48 2010 Log: First implementation of TreeView as a widget, without depending on Tree. http://code.google.com/p/google-web-toolkit/source/detail?r=7615 Added:

[gwt-contrib] [google-web-toolkit] r7616 committed - zundel

2010-02-25 Thread codesite-noreply
Revision: 7616 Author: d...@google.com Date: Thu Feb 25 14:38:24 2010 Log: zundel http://code.google.com/p/google-web-toolkit/source/detail?r=7616 Modified: /javadoc/1.7/index.html -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r7619 committed - Adds UiBinder support for ListBox....

2010-02-25 Thread codesite-noreply
Revision: 7619 Author: rj...@google.com Date: Thu Feb 25 12:09:02 2010 Log: Adds UiBinder support for ListBox. Fixes http://code.google.com/p/google-web-toolkit/issues/detail?id=4654 Patch by http://code.google.com/u/markovuksanovic/ Review by rj...@google.com

[gwt-contrib] Re: RPC Request Optimisation

2010-02-25 Thread Joe Cole
Hi Bob/Bart, I must have missed some of those methods in RPCRequestBuilder when trying to figure out how to do the automated retries. It looks like we could extend this to override the default callback mechanism and capture the serialized payload, just as we do in my proxycreator changes. I'll go