Re: Addition of future elements and binding events

2011-04-17 Thread Julien Dramaix
You can use GwtQuery, a gwt port of jQuery http://code.google.com/p/gwtquery/ The live() method is implemented so you can use it as you did it with jQuery. Documentation : http://code.google.com/p/gwtquery/wiki/GettingStarted#live()_and_let_die() Julien On Apr 7, 2:40 pm, Gabe

Re: GWT 2.2 ERP Framework Suggestions

2011-04-17 Thread Magno Machado
If GWT RPC is the way to go then why would someone want to use a helper application like Hibernate? Hibernate is for persistence. GWT-RPC is just a way to communicate client/server, they're not related. You may use both On Fri, Apr 15, 2011 at 7:55 PM, Mark Wengranowski

Re: GWT Request Factory Entity @NotNull Validation doesnt seem to be working

2011-04-17 Thread Owen Ilagan
Thanks! On Apr 16, 6:46 am, Thomas Broyer t.bro...@gmail.com wrote: Annotating your classes/fields/accessors is not enough; you need a tool that uses those annotations. gwt-servlet-deps only contains the javax.validation annotations, not any actual validator. Try adding

why JAbstractMethod getAnnotations method is protected?

2011-04-17 Thread Gal Dolber
com.google.gwt.dev.javac.typemodel.JAbstractMethod Anyone has idea why this methods are protected? I have been working around this for a year already, but it will be really useful to have access to the annotations of a method. /** * NOTE: This method is for testing purposes only.

Re: Calling server-side rpc method from server-side code

2011-04-17 Thread Gaurav Vaish
What do you want to achieve? If it's just about invoking a method, it can be as simple as: 1. Create an instance of the corresponding RPC servlet 2. Call the desired method with appropriate parameters. 3. Process the return value. Hope that helps. -- Cheers, Gaurav Vaish http://www.incoleg.com

Implement select all in CellTable

2011-04-17 Thread Subhrajyoti Moitra
Hello, Can some one please point me to a Select All functionality in a CellTable? The functionality i have to implement, is that some of the CellTable headers has a select box which when clicked will select all the rows of CellTable being displayed. Please give some hints as to how to implement

[gwt-contrib] Include all needed javax.validation classes for the api checker. (issue1425802)

2011-04-17 Thread nchalko
Reviewers: rjrjr, Description: Include all needed javax.validation classes for the api checker. Please review this at http://gwt-code-reviews.appspot.com/1425802/ Affected files: M tools/api-checker/src/com/google/gwt/tools/apichecker/ApiCompatibilityChecker.java Index:

[gwt-contrib] Re: Include all needed javax.validation classes for the api checker. (issue1425802)

2011-04-17 Thread nchalko
http://gwt-code-reviews.appspot.com/1425802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Comment on ScottSoulBinderDesignDoc in google-web-toolkit

2011-04-17 Thread codesite-noreply
Comment by j...@google.com: I'm going to have an HTML5 coprocessor added to my own soul. It's the only way I could figure out how to learn native HTML5. For more information: http://code.google.com/p/google-web-toolkit/wiki/ScottSoulBinderDesignDoc --

[gwt-contrib] Re: Comment on ScottSoulBinderDesignDoc in google-web-toolkit

2011-04-17 Thread codesite-noreply
Comment by j...@google.com: John actually does have a soul, by the way -- it' just a tag interface. For more information: http://code.google.com/p/google-web-toolkit/wiki/ScottSoulBinderDesignDoc -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add SafeUri type, similar to SafeHtml but for values in a URL attribute context. (issue1380806)

2011-04-17 Thread t . broyer
It took me a bit more time than I initially thought but I'm happy with what I finally came up with! Following Postel's law, we're lenient in what we're accepting as valid URIs (using the Web Addresses character set from iri-bis, initially coming from HTML5) but strict in what we produce from