Re: How to unsubscribe handler from EventBus?

2012-04-09 Thread Santosh kumar
Pass eventSource to the widget, and let the eventBus use this eventSource, after firing the event let the listener of the event source to process the event. On Wed, Apr 4, 2012 at 3:07 PM, Thomas Broyer t.bro...@gmail.com wrote: EventBus.addHandler returns a HandlerRegistration. Call

Re: Filter Tree in GWT

2012-04-09 Thread Qrunk
Hi Patrick, Sorry for late reply, I didnt understood what you meant by filtering of list, as in a tree I might be having so many lists, even nested lists. Can you please let me know how would I do filtering , as in any sample code snippet would do the perfect job, can you provide that

Why can't JavascriptObject's runtime null pointer be detected ?

2012-04-09 Thread Alex Luya
After some debugging,I found com.google.gwt.event.shared.UmbrellaException: One or more exceptions caught, see full set in UmbrellaException#getCauses' when calling method: [nsIDOMEventListener::handleEvent](in web model) is caused by runtime null pointer.Question is why this kind of runtime

Re: App Engine Connected

2012-04-09 Thread hai bison
I'm not sure if you deployed the debug version or released one? In my test, debug apk doesn't work. I have to export the app, sign it (by a temp. key for example), and it works. On Wednesday, April 4, 2012 5:15:30 AM UTC+7, ShakaDima wrote: Hello Everyone, first of all I'm developing on

Re: GWT data grid isn't presented

2012-04-09 Thread benb
Hey, Didn't get a response for it, I'll be happy to supply more details or examples if needed. I'll appreciate any help.. Thanks On Apr 8, 1:58 pm, benb benbra...@gmail.com wrote: Hello, I'm trying to switch from CellTable to DataGrid. The actual change was very easy (APIs are the quite the

Re: GWT with a non-java server

2012-04-09 Thread Steve Moyer
My application is served by CouchDB (as what they call a couchapp) and also communicates back to the CouchDB server for back-end persistence and certain queries. You could easily serve a GWT application with a Node.js server too. You can serve as many applications as you want from a single port

Re: GWT Performance : Good or Bad ?

2012-04-09 Thread dhoffer
Thanks for the updated comparison. I wanted to point out that the summary line is not always correct. Examples: GXT Render Time: 1ms GWT Render Time: 0ms GXT was 1x faster... and GXT Render Time: 1ms GWT Render Time: 1ms GXT was 1x faster... -Dave On Apr 4, 5:40 am, Fabrice

Re: GWT Performance : Good or Bad ?

2012-04-09 Thread Daniel Mauricio Patino León
What about the gxt 3 licence? I mean we are talking about GWT performace or a gxt3 vs gwt ? El 9 de abril de 2012 09:40, dhoffer dhoff...@gmail.com escribió: Thanks for the updated comparison. I wanted to point out that the summary line is not always correct. Examples: GXT Render Time: 1ms

Re: Filter Tree in GWT

2012-04-09 Thread Jens
Using CellTree you have to provide a TreeViewModel. For each node in the tree you will create a ListDataProvider that contains the child elements of a given node. If you want to filter your tree you have to filter all these ListDataProviders. To do so you should create a sub class of

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-09 Thread Renato Beserra
No attention on this yet? I can't +1 it without G+, right? 2012/4/5 Joshua Kappon shuky.kap...@gmail.com here is my original Google+ post: https://plus.google.com/u/0/117852058882395554716/posts/iQnNfC2BkxA I'm aiming to get some response from Google - You can really help out by re-sharing

ListEditor question.

2012-04-09 Thread Daniel Mauricio Patino León
Hello Every one. I have a problem with ListEditor. The case is this: I have a main editor for AProxy then AProxy has a list of BProxy 's so in the main view i have this: @UiField RespositorioUsuario archivos; Then i have a sub view with something like this: public class RespositorioUsuario

Re: ListEditor question.

2012-04-09 Thread Daniel Mauricio Patino León
My bad. Of course i need to initialize the ArrayList on the main Proxy when create a new one. So proxy.setArchivos(new ArrayListArchivoProxy()); solved this issue. Great GWT. El 9 de abril de 2012 15:08, Daniel Mauricio Patino León ceo.lion@gmail.com escribió: Hello Every one. I have a

Re: Is there any possibility to create ImageResource instance by resource file name (or other string identifier)?

2012-04-09 Thread Joseph Lust
Is it possible to create the keyboard with some Div's and CSS? Seems that you might not need images at all. You can make a code generator for this interface if you don't want to just copy/paste and hard code these entries, but that would likely prove complex and difficult to test. I'd suggest

Re: Why can't JavascriptObject's runtime null pointer be detected ?

2012-04-09 Thread Chris Price
I think this issue explains what you have observed (see the comments towards the end) code.google.com/p/google-web-toolkit/issues/detail?id=3069 On 9 Apr 2012 08:01, Alex Luya alexander.l...@gmail.com wrote: After some debugging,I found com.google.gwt.event.shared.UmbrellaException: One or

RequestFactory and ListDataProvider assign type Problem

2012-04-09 Thread jmbz84
Hello, I'm trying to make a generic method to get some data with RequestFactory. I have a method getData that executes fire on a Request in order to get a list of items(generics) The problem is when I try to assign the returned List arg0 to my ListDataProvider I get a type error. private

[gwt-contrib] Re: Fix for issue 5952: RequestContext#isChanged. (issue1601806)

2012-04-09 Thread rdayal
Generally looks good, just a couple of suggestions. Let's go one more round on this. http://gwt-code-reviews.appspot.com/1601806/diff/1015/user/src/com/google/web/bindery/requestfactory/shared/impl/AbstractRequestContext.java File

[gwt-contrib] Re: Fix issue 6710: entities referenced from list of value proxies (issue1646803)

2012-04-09 Thread rdayal
Generally, looks good, but wouldn't mind hearing your comments to my questions before the submit. https://gwt-code-reviews.appspot.com/1646803/diff/1/user/src/com/google/web/bindery/requestfactory/server/Resolver.java File user/src/com/google/web/bindery/requestfactory/server/Resolver.java

[gwt-contrib] Re: DefaultProxyStore violated ProxyStore#nextId contract. (issue1622803)

2012-04-09 Thread rdayal
LGTM. http://gwt-code-reviews.appspot.com/1622803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: ValidationTool now marks non-public domain methods as errors. (issue1653803)

2012-04-09 Thread rdayal
On 2012/03/04 13:02:42, tbroyer wrote: LGTM. https://gwt-code-reviews.appspot.com/1653803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix this-window confusion in DevMode (issue1620805)

2012-04-09 Thread rdayal
On 2012/02/28 05:16:42, stephenh wrote: instance in the sense of instance method Done. submitted. http://gwt-code-reviews.appspot.com/1620805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Remove unused/broken constructors (issue1614805)

2012-04-09 Thread rdayal
On 2011/12/19 20:25:20, scottb wrote: LGTM Submitted. http://gwt-code-reviews.appspot.com/1614805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Make GWT.create/etc usable on server. (issue1677803)

2012-04-09 Thread jat
@scottb - now that you are back, would you care to review this again? Since you last looked at it, I changed the way server-side class instantiators are registered, added a way to register property values, and added a servlet testing the Localizable instantiator.