Re: Nasty overlay types restrinction : Only one JavaScriptObject type may implement the methods of an interface

2012-09-11 Thread Alain Ekambi
Answer below in Bold. Cheers 2012/9/11 Sebastián Gurin sebastigu...@gmail.com Nino; I very like your thoughts and I agree with them. My reply between lines: On Monday, September 10, 2012 5:05:25 PM UTC-3, nino wrote: The main Question is do you want YUI users to use Java or do you want

Re: Asynchronous work - what are our options?

2012-09-11 Thread Andrea Boscolo
Elemental should support it. And there are also other wrappers here and there that work too. On Tuesday, September 11, 2012 5:31:33 AM UTC+2, markww wrote: Hi, I was hoping to do some asynchronous work, though I do not believe this is possible (due to the limitations of javascript). The

Errors running builder 'Google WebApp Project Validator'

2012-09-11 Thread Bucky
I just installed juno and when I launched my gwt/gae project I get the following stack trace: java.lang.NullPointerException at com.google.gdt.eclipse.core.MarkerUtilities.createMarker(MarkerUtilities.java:65) at

Open new tab in dev mode with window.open

2012-09-11 Thread Thomas Lefort
Hi, I am trying to programatically open a new tab in dev mode with a new instance of my application, eg my application url + the place name. I use window.open(#myplacename:, _blank). But all I get is a window without any of the specs/options such as navigation, etc... also the url is wrong,

Re: Open new tab in dev mode with window.open

2012-09-11 Thread Juan Pablo Gardella
Did you tried use a invisible anchor and click on it? 2012/9/11 Thomas Lefort lefortho...@gmail.com Hi, I am trying to programatically open a new tab in dev mode with a new instance of my application, eg my application url + the place name. I use window.open(#myplacename:, _blank). But all

Re: Open new tab in dev mode with window.open

2012-09-11 Thread Thomas Broyer
On Tuesday, September 11, 2012 4:08:46 PM UTC+2, Thomas Lefort wrote: Hi, I am trying to programatically open a new tab in dev mode with a new instance of my application, eg my application url + the place name. I use window.open(#myplacename:, _blank). But all I get is a window without

Re: Date and time pickers in any timezone

2012-09-11 Thread Andy
There is another point that I meant to make last night. You suggested providing a formatter that uses the DateTimeFormat overloads that take a TimeZone. There is a format(Date,TimeZone) but there isn't a parse(String,TimeZone). I considered appending a timezone to the String in

Re: Open new tab in dev mode with window.open

2012-09-11 Thread Thomas Lefort
Hi, Thanks to both of you. Regarding teh anchor, I did try with the following code, but it still doesn't work. Anchor anchor = new Anchor(); anchor.setHref(#EISearchResultPlace: + result); anchor.setTarget(_blank); anchor.setVisible(false); RootPanel.get().add(anchor); anchor.fireEvent(new

Re: Open new tab in dev mode with window.open

2012-09-11 Thread Thomas Broyer
On Tuesday, September 11, 2012 6:16:43 PM UTC+2, Thomas Lefort wrote: Hi, Thanks to both of you. Regarding teh anchor, I did try with the following code, but it still doesn't work. Anchor anchor = new Anchor(); anchor.setHref(#EISearchResultPlace: + result); anchor.setTarget(_blank);

Help with SuperDevMode

2012-09-11 Thread David Sauvier
I have : add-linker name=xsiframe/ set-configuration-property name=devModeRedirectEnabled value=true/ in my gwt.xml SuperDevMode starts no-problem, compile app regular way, start regular dev mode. Always getting Can't find any GWT Modules on this page. Is as if the xsiframe linker isn't

Help with SuperDevMode

2012-09-11 Thread Thomas Broyer
It's either Super Dev Mode or Dev Mode, not both at the time (DevMode is fine for its embedded HTTP server, but do not use the browser plugin, i.e. no ?gwt.codesvr) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion

Re: Help with SuperDevMode

2012-09-11 Thread David Sauvier
Thanks for getting back, for some reason my latest post was deleted... I understand about not using the browser plugin (I think). I'm not using ?gwt.codesvr in the URL. These are the URL's that I have tried: http://localhost:/ and http://127.0.0.1:/ I'm able to access the app with

Re: Help with SuperDevMode

2012-09-11 Thread Juan Pablo Gardella
Are you drag the button Dev mode on at the tab where you start the application? 2012/9/11 David Sauvier da...@sauvier.com Thanks for getting back, for some reason my latest post was deleted... I understand about not using the browser plugin (I think). I'm not using ?gwt.codesvr in the URL.

Re: Help with SuperDevMode

2012-09-11 Thread David Sauvier
I just tried that, didn't seem to have any effect, still not finding the module. It's as if the hooks to Super Dev Mode are not hooking. This is what the Console of SuperDevMode looks like, if it helps? workDir: C:\Users\DEDELS~1\AppData\Local\Temp\gwt-codeserver-8619867118058003844.tmp

Re: Help with SuperDevMode

2012-09-11 Thread David Sauvier
That was it, Thanks Juan! I have to pay better attention to the instructions, but none the less. This maybe helpful to someone down the line?? Appreciate it! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on

Re: Meteor DDP - or similar - with GWT?

2012-09-11 Thread Thomas Lefort
Yes, thanks. In the end I made my own server push based on some code I had (using long polling). It's the long and hard way but I couldn't bend enough the different libraries available to support what I want to do. On Friday, 7 September 2012 01:07:08 UTC+2, Andrea Boscolo wrote: I used it

Re: need help in calling servlet on gwt +gae

2012-09-11 Thread Vik
anyone on this plz ? we are stuck here Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Sat, Sep 8, 2012 at 2:15 PM, Vik vik@gmail.com wrote: Hello Can someone please assist us on

Re: Open new tab in dev mode with window.open

2012-09-11 Thread Thomas Lefort
fireEvent - Oh I see, makes perfect sense! Thanks. click - I can't get it to work unfortunately, the object has no 'click' method, both using ButtonElement cast and JSNI element.click(). I feel a bit useless there, if you have a little more patience to detail your solution? Thanks. tab - I agree

Re: Open new tab in dev mode with window.open

2012-09-11 Thread Abraham Lin
On Tuesday, September 11, 2012 3:54:55 PM UTC-4, Thomas Lefort wrote: This is my code for the anchor AnchorElement anchor = DOM.createAnchor().cast(); anchor.setHref(#EISearchResultPlace: + result);

Re: Retrieving values from fields in GWT generators

2012-09-11 Thread Adam Gordon
On Monday, September 10, 2012 3:14:40 PM UTC-6, Thomas Broyer wrote: What's wrong with accessing the field directly? (using JSNI to bypass the Java access rules) Maybe have a look at the kind of code generated by the JSR303 built-in support. I was under the impression that JSNI was more

Re: Meteor DDP - or similar - with GWT?

2012-09-11 Thread Jens
In the end I made my own server push based on some code I had (using long polling). It's the long and hard way but I couldn't bend enough the different libraries available to support what I want to do. When using long polling and depending on your app's user base you may want to take a

MVP with multiple EntryPoints

2012-09-11 Thread Cristian Rinaldi
We have an application with multiple EntryPoints. Each EntryPoint contains an MVP configuration with their own PlaceHistoryHandler, PlaceHistoryMapper and PlaceController. Depending on the order that the history handlers were configured, the place treatment is overlapped. I think the problem is

[gwt-contrib] Re: Add aria-hidden state to layout panel rulers. (issue1820807)

2012-09-11 Thread Thomas Broyer
On Tue, Sep 11, 2012 at 3:04 AM, Aneliya Tincheva atinch...@google.com wrote: Hi, On Mon, Sep 10, 2012 at 6:16 PM, t.bro...@gmail.com wrote: Reviewers: atincheva, Message: Note: I only applied the suggested fix (after checking the WAI-ARIA spec), I haven't tried it with a screenreader

[gwt-contrib] Re: EditorDriver#setConstraintViolations used to thrown NPE if arg was null. (issue1826803)

2012-09-11 Thread t . broyer
On 2012/09/10 22:57:14, skybrian wrote: I don't know this code, but since pushViolations() and iterableFromConstraintViolations() are both public methods, under the principle of being conservative about what you send and liberal about what you receive, it seems like

[gwt-contrib] Re: EditorDriver#setConstraintViolations used to thrown NPE if arg was null. (issue1826803)

2012-09-11 Thread skybrian
There's a usage in Google code as well, but it looks like it can't pass in a null. I'd rather fix iterableFromConstrantViolations [sic] but I don't care much, so submitting. https://gwt-code-reviews.appspot.com/1826803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Update Maven sample pom.xml files to use maven-compiler-plugin's annotation processing functiona... (issue1828803)

2012-09-11 Thread rdayal
Reviewers: tbroyer, drfibonacci, Description: Update Maven sample pom.xml files to use maven-compiler-plugin's annotation processing functionality. It is now understood by m2e-apt, so we can get rid of the hacks we had to put in to make this work in Eclipse/GPE. This also gets rid of the nasty

[gwt-contrib] Move GAE Auth functionality from Expenses over the MobileWebApp sample. (issue1829803)

2012-09-11 Thread rdayal
Reviewers: tbroyer, drfibonacci, rchandia, Description: Move GAE Auth functionality from Expenses over the MobileWebApp sample. Please review this at http://gwt-code-reviews.appspot.com/1829803/ Affected files: M samples/dynatablerf/README-MAVEN.txt M samples/dynatablerf/pom.xml M

[gwt-contrib] Re: Move GAE Auth functionality from Expenses over the MobileWebApp sample. (issue1829803)

2012-09-11 Thread rdayal
On 2012/09/11 20:36:11, rdayal wrote: Had to re-create this; my client was messed up. Original review was here: http://gwt-code-reviews.appspot.com/1806803/ Note that this review is built on the changes here: http://gwt-code-reviews.appspot.com/1828803/ (hence they are included)

Re: [gwt-contrib] GWT 2.5 RC1 increases mgwt showcase by 22%

2012-09-11 Thread Ray Cromwell
I finally tracked this down, it appears Android client bundles are not being optimized out of the Iphone build, for example. This code: public MGWTThemeBaseThemeStandardImpl() { if (MGWT.getOsDetection().isAndroidPhone()) { bundle =