Re: LocalStorage not working in HTML5 app

2012-03-21 Thread dodo dard
You can test and look how to use HTML5 in : www.html5bydemo.com Le mardi 13 mars 2012 02:49:59 UTC+1, stymie a écrit : I am using phonegap to wrap a HTML5 app. I am using GWT's localstorage mechanism. When I add this to my project I just get a blank page. But if I remove the localstorage

Re: ff11 gwt dev plugin

2012-03-21 Thread kim young ill
thanx alot On Tue, Mar 20, 2012 at 5:38 PM, Trevor Skaife tska...@gmail.com wrote: Thanks a lot, it's now working on my mac. -Trevor -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: JavaScriptObject generate a json with a Integer field

2012-03-21 Thread Sandro Munda
Thanks ! Exactly. Sandro Munda munda.san...@gmail.com On Tue, Mar 20, 2012 at 2:28 PM, Thomas Broyer t.bro...@gmail.com wrote: On Tuesday, March 20, 2012 12:49:10 PM UTC+1, Sandro Munda wrote: Hello everybody ! I have a subclass of a JavaScriptObject with a generic type T. public class

Debugging with Xcode

2012-03-21 Thread Olivier Scherler
Hello, Has anyone ever been able to run a GWT project in devmode using Xcode on the Mac and use the debugger? Maybe using Xcode 3 instead of 4? That would really handy. Cheers, Olivier -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Adding Grid with margin to a LayoutPanel

2012-03-21 Thread hermis
Hey all, When I add a grid with 100% height to a layout panel and set a margin on it, the bottom margin is not honoured: *public* *void* *onModuleLoad*() { Grid grid = *new* Grid(1,1); grid.setHeight(100%); grid.getElement().getStyle().setBackgroundColor(yellow);

Re: ff11 gwt dev plugin

2012-03-21 Thread Andrew Scully
Thanks. How soon until it is available via http://gwt.google.com/missing-plugin/MissingPlugin.html ? On Friday, 16 March 2012 19:58:34 UTC, Alan Leung wrote: Wow! I didn't know it was released already. Some how I thought I had more time until FF11. I'll get on it. thanks for the

Re: How to share classes between two different modules with two different pages

2012-03-21 Thread Andrew Scully
It sounds like you just need two separate gwt.xml files within the same project. There is no reason why you can't use the same inherits within both. On Tuesday, 20 March 2012 21:22:58 UTC, Deepak Singh wrote: Hi All, I have a GWT project with 2 modules. ModuleA and ModuleB Both are

Re: Debugging with Xcode

2012-03-21 Thread kim young ill
xcode with for java/gwt ??? it'd be much (IMHO) easier for you to switch to eclipse/netbeans/ . On Wed, Mar 21, 2012 at 11:41 AM, Olivier Scherler oliv...@gasser-media.chwrote: Hello, Has anyone ever been able to run a GWT project in devmode using Xcode on the Mac and use the debugger?

Change DatePicker language

2012-03-21 Thread nicanor.babula
Hi everyone, How can I change the display language of the DatePicker object? My app is internationalized on a GWT level, but enabling more than 1 language in module.gwt.xml generates a war too big to be deployed on Appengine, therefore I am stuck with the default which I assume is english. Is

Custom cell with table causes event problem in cellTable

2012-03-21 Thread Musicman75
Hello, I've a problem using a custom cell in a cellTable. My custom renderer renders the data with templates and includes a table. On mouseOver the main cellTable highlights the row, but on mouseOver on the included table, the highlight of the row gets lost. How can I get the row highlighted

GWT Chat Widget with Jetty

2012-03-21 Thread Thomas Lefort
Hi, I want to add a very simple chat window to my GWT web application with Jetty 6 on the server side. Can anybody recommend me a good OS project for that? I checked atmosphere so far but I am sure there are many others. -- You received this message because you are subscribed to the Google

Gwt4Touch, Gwt4Titanium

2012-03-21 Thread Lehel
Hi! Does anybody have some experience with Gwt4Touch, Gwt4Titanium? thx, Lehel -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send

Re: Exception adding Items to ListBox in IE8

2012-03-21 Thread Alex opn
Thanks alot for the hint! Indeed I'm using html5shim but would have never thought that its causing the problem! It's working now when I remove html5shim. You made my day : ) Am Dienstag, 20. März 2012 15:30:32 UTC+1 schrieb Freddi Hinz: I had exactly the same problem. In my case it was due

Re: HTML-safety best practices

2012-03-21 Thread dhoffer
I have a few questions about this. If I change to: interface Template extends SafeHtmlTemplates { @Template(img src=\{0}\/) SafeHtml img(SafeUri safeUri); } 1. How does the template know to call asString() on the safeUri instance? 2. With this change I now have the same problem

Re: How to share classes between two different modules with two different pages

2012-03-21 Thread Deepak Singh
Yes i have two seperate *.gwt.xml for both the modules. And i inherit ModuleB into moduleA as follows: ModuleA.gwt.xml inherits com.pdstechi.modulenameB.ModuleB And then i use com.pdstechi.modulenameB.shared.AbcDto into com.pdstechi.modulenameA.client package, it fails compilation with

Re: Gwt4Touch, Gwt4Titanium

2012-03-21 Thread Alfredo Quiroga-Villamil
Feel free to post questions, ask for feedback, etc... also in the forum. http://www.emitrom.com/forum Best regards, Alfredo On Wed, Mar 21, 2012 at 11:02 AM, Lehel sipos.le...@gmail.com wrote: Hi! Does anybody have some experience with Gwt4Touch, Gwt4Titanium? thx, Lehel -- You

Re: Change DatePicker language

2012-03-21 Thread Thomas Broyer
On Wednesday, March 21, 2012 2:02:27 PM UTC+1, nicanor.babula wrote: Hi everyone, How can I change the display language of the DatePicker object? My app is internationalized on a GWT level, but enabling more than 1 language in module.gwt.xml generates a war too big to be deployed on

Re: Custom cell with table causes event problem in cellTable

2012-03-21 Thread Thomas Broyer
Known issue, fixed in trunk: http://code.google.com/p/google-web-toolkit/issues/detail?id=5714q=cell%20table%20event On Wednesday, March 21, 2012 3:22:04 PM UTC+1, Musicman75 wrote: Hello, I've a problem using a custom cell in a cellTable. My custom renderer renders the data with

Re: HTML-safety best practices

2012-03-21 Thread Thomas Broyer
On Wednesday, March 21, 2012 4:15:10 PM UTC+1, dhoffer wrote: I have a few questions about this. If I change to: interface Template extends SafeHtmlTemplates { @Template(img src=\{0}\/) SafeHtml img(SafeUri safeUri); } 1. How does the template know to call

Re: GWT FileUpload - Servlet options and handling response

2012-03-21 Thread learning coding
Hi Ashish. Even i wan t to upload file on server and send back to client. I found the follwing link which is working fine. http://stackoverflow.com/a/606/780393 Regards On Tue, Mar 20, 2012 at 4:39 PM, kim young ill khi...@googlemail.comwrote: On Fri, Mar 16, 2012 at 10:27 PM, Ashish

Re: Defining a Jetty realm in hosted mode

2012-03-21 Thread Paul Stockley
Create a jetty-web.xml file under your war/WEB-INF folder Mine is defined as follows ?xml version=1.0? !DOCTYPE Configure PUBLIC -//Mort Bay Consulting//DTD Configure//EN http://jetty.mortbay.org/configure.dtd; Configure class=org.mortbay.jetty.webapp.WebAppContext Get

Re: How to share classes between two different modules with two different pages

2012-03-21 Thread Matias Costa
I would create a base module from which A and B inherit. Or you can try in moduleB.gwt.xml source path=../moduleA/client / El miércoles 21 de marzo de 2012 16:16:46 UTC+1, Deepak Singh escribió: Yes i have two seperate *.gwt.xml for both the modules. And i inherit ModuleB into moduleA as

GIN 1.5 and GUICE 3.0 Integration Error

2012-03-21 Thread Mark Diesta
In my build path I have this jars lib aopalliance.jar gin-1.5-post-gwt-2.2.jar guice-3.0.jar guice-assistedinject-3.0.jar guice-servlet-3.0 javax.inject.jar And got this error. java.lang.NoSuchMethodError: com.google.inject.Scopes.isSingleton(Lcom/google/inject/Binding;)Z at

[gwt-contrib] Re: Deprecating TreeItem.addItem/insertItem(String html) in favor of methods that take SafeHtml. Th... (issue1666803)

2012-03-21 Thread jlabanca
committed as r10920 http://gwt-code-reviews.appspot.com/1666803/diff/1/user/test/com/google/gwt/user/client/ui/TreeTest.java File user/test/com/google/gwt/user/client/ui/TreeTest.java (right):

[gwt-contrib] FF11 Devmode Plugin (issue1667803)

2012-03-21 Thread acleung
Reviewers: conroy, Description: FF11 Devmode Plugin Please review this at http://gwt-code-reviews.appspot.com/1667803/ Affected files: M plugins/xpcom/Makefile A plugins/xpcom/VisualStudio/ff110-xpcom.vcproj M plugins/xpcom/install-template.rdf M