[gwt-contrib] Comment on CodeSplitting in google-web-toolkit

2009-10-25 Thread codesite-noreply
Comment by a.revolution.ultra.blue: One hack I was using to get modules to "speak through compilations" was using Ray's exporter. Basically, common functions like custom dialogs that cover the screen... If I want them to look nice, but be accessible before I ever access Widget code, I use

[gwt-contrib] Fix for issue 3374 (URL.encodeComponent limited to query-string uses)

2009-10-25 Thread t . broyer
Reviewers: Ray Ryan, Description: As discussed in issue 3374 comments, this patch adds overloads of encodeComponent and decodeComponent to deal differently with spaces (keeping them as %20 rather than replacing them with +) and therefore allow their use for path segments (useful when using "RESTf

[gwt-contrib] Re: Extending FocusWidget

2009-10-25 Thread skrat
Hi, thanks, that helped. I now check for both FocusWidget and HasState On Oct 19, 10:31 pm, Thoka wrote: > Hi, > > Create an interface, like: > > public interface HasState { >    void setEnabled(boolean enabled); >    boolean isEnabled(); > > } > > ...and then implement this with your composite

[gwt-contrib] Use native JSON when supported

2009-10-25 Thread t . broyer
Reviewers: Ray Ryan, bobv, Description: This patch adds: - JsonUtils.safeParse - JsonUtils.stringify - JsonUtils.isArray (equivalent of ECMAScript 5's Array.isArray) - deferred binding implementations using either native support or emulation (eval() for the parsing) ExternalTextResourceP