Since User Info Address were used at the time of Signing Up Updating Profile, so How to design GWT Gui to reuse the components action?

2014-02-27 Thread Tom
Ok, Here is the problem. At the time user signup, user need to provide info such as: -Email:__ -UserName: -FName:__ -LName:___ -Address: (User can have option to update Address lately) -Captcha:__ [Sign Up]

Re: Widget's offsetsize is 0

2014-02-27 Thread Vassilis Virvilis
Yes I am also a fan of HeaderPanel and I use it most of the time. However I was replying to why I can't get the correct info after the event loop with ScheduleDeferred? I have seen this behavior even with a headerPanel but it wasn't a bug but the way broswers work. Let's I have a headerPanel

Best alternative for Character.getNumericValue(ch)?

2014-02-27 Thread Ed
I need to use the method Character.getNumericValue(character) for Iban account nr validation (the modulo calculation part: LINKEhttp://en.wikipedia.org/wiki/ISO_13616#Modulo_operation_on_IBAN ) However this method isn't supported by GWT. What is my (best) alterantive? Details: The method for

Changes in SuperDevMode not picked up - sometimes

2014-02-27 Thread Raphael André Bauer
Hi, I am just upgrading my apps to 2.6 and SuperDevMode. All in all I have not much trouble and everything works out of the box (strange feeling though). But finally I found a small glitch. My setup: gwt-maven-plugin and mvn gwt:superdevmode to fire everything up (2.6) My Ide is Netbeans and

Re: gwt-maven-plugin and codeserver, where to find/place/reach html to be included in the jetty

2014-02-27 Thread Adnane Tellou
Sorry for being too late, I was out for some days ... I was actually calling wrong the nocache.js script from my jsp main page, calling it from codeserver instead of my tomcat. Every Url is pointing to my tomcat/base module. Now I have this line in my JSP: script type=text/javascript

Re: gwt-maven-plugin and codeserver, where to find/place/reach html to be included in the jetty

2014-02-27 Thread Adnane Tellou
I forgot to say that this app uses one module if it has something to do with it (it's an example for developers in the company) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from

Re: GWT and SVG, the 125th... :-)

2014-02-27 Thread Ümit Seren
In your GraphicsPanel.java try to use var draw = $wnd.SVG('drawing') instead of SVG On Thursday, February 27, 2014 6:25:07 AM UTC+1, Magnus wrote: Hi, ok, I used the GWT ScriptInjector, and now also the identifier SVG can be resolved. This brought me one step further, but now I get

Re: GWT and SVG, the 125th... :-)

2014-02-27 Thread Alberto Mancini
Hi, if I understand the js fragment you posted at the beginning of this thread var draw = SVG('drawing').size(300, 300) means create an object SVG using as a parent element the element with the id 'drawing' (cause 'drawing' is a string, you can pass an element instead, i checked the code) so

Re: GWT compiling tools: is there any way to get the graph of inherited modules? Even a simple flat list would be fine :-)

2014-02-27 Thread Davide Cavestro
I've patched the original file in order to provide - better exit status handling - alternative output type (a textual representation of the deps tree) - possibility to write on the standard output Follows an excerpt from the dependency tree --+com.google.gwt.user.UserAgent

Re: GWT and SVG, the 125th... :-)

2014-02-27 Thread Jens
Working example: public class SvgEntryPoint implements EntryPoint { public class SvgWidget extends Widget { public SvgWidget() { setElement(Document.get().createDivElement()); // SVG library should draw inside the widget's container element drawExample(getElement());

Re: Chrome Touch Emulation and GWT

2014-02-27 Thread maticpetek
Hi, Have you try run code in SuperDevMode? This shoud work. I also have previous problems with Chrome Hosted mode in Touch Event emulator. Regards, Matic On Wednesday, February 19, 2014 5:12:52 PM UTC+1, Alexander Zbiek wrote: Hi all, hope it is not wrong to post a question here. I

Re: Chrome Touch Emulation and GWT

2014-02-27 Thread Thad Humphries
See https://developers.google.com/chrome-developer-tools/docs/mobile-emulation: Note under 'Emulating Touch Events': elem.ontouch* handlers will currently not fire with this feature. Use the --touch-events command line flag to let Chrome trigger these handlers. On Wednesday, February 19,

Re: Changes in SuperDevMode not picked up - sometimes

2014-02-27 Thread Thad Humphries
SuperDevMode needs to be compiled only so far as you need to click you Dev Mode On bookmark and press the Compile button. That loads your changes. I can't speak to the Netbeans IDE (I'm using Eclipse). On Thursday, February 27, 2014 7:02:16 AM UTC-5, Raphael Bauer wrote: Hi, I am just

Re: 2.6.0-rc3 and Jetty's WebAppContext (jetty-web.xml)

2014-02-27 Thread joerg.hohwil...@googlemail.com
Hi there, GWT 2.6.0 is out and officially released and the problem is still there. It used to work fine before with 2.5. Also I read that dev-mode plugin may not be supported in next firefox version. This is all a real pity: The whole thing about GWT is that you can do RIAs in pure Java with all

Re: Development Mode will not be supported in Firefox 27+

2014-02-27 Thread joerg.hohwil...@googlemail.com
Hi there, I can understand that it is a hard task to maintain the GWT and especially DevMode with its plugins. However, the hole thing about GWT is that you can do pure Java and use the Java tooling. Developers know how to work with Eclipse. And within the Eclipse debugger you can evaluate

Re: Development Mode will not be supported in Firefox 27+

2014-02-27 Thread Brian Slesinsky
I'm not sure what the Jetty problems are but they should be fixed. Do we have a good bug report for them? (In our setup we see stack traces but Jetty still runs.) - Brian On Thu, Feb 27, 2014 at 4:51 PM, joerg.hohwil...@googlemail.com joerg.hohwil...@googlemail.com wrote: Hi there, I can

[gwt-contrib] JavaScriptObject marker interface

2014-02-27 Thread Danilo Reinert
I work essentially with JSOs and I prefer to user the Interface-Impl pair pattern. It happens that sometimes I cannot use my interfaces because some components requires JavaScriptObject extensions, like JsArray. I'm missing some IsJavaScriptObject marker interface. Does that sounds

[gwt-contrib] JavaWriter API as replacement for SourceWriter family

2014-02-27 Thread Andrés Testi
Hi contribs: Are you aware of Square's JavaWriter API? (https://github.com/square/javawriter). It comes from the Dagger/Guice/Guava team, and is widely used for code generation (Dagger, AutoFactory and AutoValue What do you think about introduce this dependency as replacement for

Re: [gwt-contrib] JavaWriter API as replacement for SourceWriter family

2014-02-27 Thread Goktug Gokdogan
This has been discussed earlier but in general we would like to move to APT for codegen - with that developers could use any existing lib/framework that they see a fit. On Thu, Feb 27, 2014 at 7:06 AM, Andrés Testi andres.a.te...@gmail.comwrote: Hi contribs: Are you aware of Square's

Re: [gwt-contrib] JavaWriter API as replacement for SourceWriter family

2014-02-27 Thread James Nelson
Is there anywhere to get a sneak preview on the discussions about the future of codegen? Andres and I have both invested time in some extensions of ast-based codegen, and could really use some time and forewarning to adapt our strategy to stay future-friendly with out apis. --

Re: [gwt-contrib] JavaWriter API as replacement for SourceWriter family

2014-02-27 Thread Ray Cromwell
I think if we move to APT, you can do AST based code-gen via something like a JavaWriter to a stream, or if we adopt lombok, then you construct code by directly manipulating the trees of JavaC and JDT. On Thu Feb 27 2014 at 4:17:15 PM, James Nelson ja...@wetheinter.net wrote: Is there

Re: [gwt-contrib] JavaWriter API as replacement for SourceWriter family

2014-02-27 Thread Brian Slesinsky
I believe it's just an idea. In practice, we have lots of GWT generator code that's not easily migrated. I'm not familar with APT but if I wanted to learn about it I would probably start by studying Guice's AutoValue. If they're using JavaWriter then that's a good endorsement. - Brian On Thu,

Re: [gwt-contrib] JavaWriter API as replacement for SourceWriter family

2014-02-27 Thread Goktug Gokdogan
On Thu, Feb 27, 2014 at 4:17 PM, James Nelson ja...@wetheinter.net wrote: Is there anywhere to get a sneak preview on the discussions about the future of codegen? There is not much more that what is already discussed earlier in the list . APT takes responsibility of codegen out of GWT

Re: [gwt-contrib] JavaWriter API as replacement for SourceWriter family

2014-02-27 Thread James Nelson
There is not much more that what is already discussed earlier in the list . APT takes responsibility of codegen out of GWT compiler and get more inline with the rest of the java world and works on GWT/Android/server. That is basically what would you do if there was no TypeOracle nor

Re: [gwt-contrib] JavaWriter API as replacement for SourceWriter family

2014-02-27 Thread James Nelson
An excellent read about the trick behind Lombok, and related ast-hacking utils: http://notatube.blogspot.ca/2010/11/project-lombok-trick-explained.html -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google

Re: [gwt-contrib] JavaWriter API as replacement for SourceWriter family

2014-02-27 Thread Goktug Gokdogan
On Thu, Feb 27, 2014 at 8:07 PM, James Nelson ja...@wetheinter.net wrote: There is not much more that what is already discussed earlier in the list . APT takes responsibility of codegen out of GWT compiler and get more inline with the rest of the java world and works on GWT/Android/server.