how to assign Debug ID to each node of CellTree

2012-07-02 Thread Nilesh
Dear All, I am creating tree by *extending *CellTree. i want to assing debug id to each node of tree. how can i do that? i am using my own CustomeTree model using TreeViewModel. thanks! Nilesh. -- You received this message because you are subscribed to the Google Groups "Google Web

Re: GWT 2.5, -compileReport and closure compiler

2012-07-02 Thread Johannes Barop
http://code.google.com/p/google-web-toolkit/issues/detail?id=7475 Am 02.07.2012 um 16:25 schrieb Stefano Ciccarelli: > I've noticed that if I enable the closure compiler the -compileReport flag is > totaly ignored and the soycReport in the extra folder is missing. > > Someone has a workaround?

Re: Need a tool to find out client side coverage .

2012-07-02 Thread Joseph Lust
Have you had luck using the patched Emma version with the more recent releases of Emma? They no longer work for me in Indigo. Perhaps I've done it wrong? > > I opened it as a ticketto have the GWT patch merged

Re: preview in case of iframe

2012-07-02 Thread bhomass
thanks, I figured as much. The two documents are independent DOM structures and while the preview is "global", it is only global within one DOM structure. I got what I want w/o preview, using *addDomHandler. **as long as you have the handle to components in both frames, this works quite fine.

Re: Any summary on The History and Future of Google Web Toolkit available?

2012-07-02 Thread Celinio
https://developers.google.com/events/io/sessions/gooio2012/218/ is this talk finally available somewhere ? i'm looking for the video ! On Sat, Jun 30, 2012 at 7:23 AM, Ali Jalal wrote: > Another news: > > > http://podcasts.infoworld.com/d/application-development/google-hands-over-control-of-go

Re: Firefox 13 DevMode Plugin

2012-07-02 Thread Riley
Our problems disappeared when we expanded the permgen allocation with -XX:MaxPermSize=2048m . You probably need way less space than that. Maybe the updated plugin updates classes so they need to be re-added more often? On Wednesday, June 27, 2012 1:59:01 PM UTC-5, Riley wrote: > > Yes, we ar

Re: preview in case of iframe

2012-07-02 Thread gpike
The document inside you iFrame is a completely separate document and can be from a different domain as well so won't get any events just like you don't get events from other browser tabs. However you could communicate across the boundary by defining your own api's. What I mean is you can add

Re: How to convert an object that contains List to json using AutoBean

2012-07-02 Thread Joseph Lust
Code, error? We need more than that to help you. Did you follow the AutoBean tutorial ? Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion

Re: Method findById requestFactory

2012-07-02 Thread Thomas Broyer
On Monday, July 2, 2012 5:35:35 PM UTC+2, bond wrote: > > Hello everybody, > I'm a question: I'm using request factory with mvp pattern. I have a > CellTable and when dataProvider is inovoked, I see that on server is called > the count() and getRow() method but is also called the method findById

Help debug GWT Designer in eclipse

2012-07-02 Thread Carlos Silva
Hi, I'm using Gentoo and I have eclipse version 4.2 along with swt 4.2 and libwebkit-gtk installed. Everything looks good with respect to system libraries and whatnot. Still, eclipse refuses to load up the designer saying that it needs xulrunner version bla bla bla. On version 3.7 I had an option

Re: Validation in 2.5 RC1

2012-07-02 Thread Andrés Testi
Is it planned to add special support for EntityProxy to reflect entity validations on their respective proxies? It would even be useful to set annotation values on HTML5 form validation attributes, like min, max, pattern, placecholder etc. - Andrés El lunes, 2 de julio de 2012 12:02:19 UTC-3,

Re: GWT 2.5, -compileReport and closure compiler

2012-07-02 Thread Stefano Ciccarelli
Thanks! And about the -XfragmentMerge I was jumping! :D 2012/7/2 Jens > I've noticed that if I enable the closure compiler the -compileReport flag >> is totaly ignored and the soycReport in the extra folder is missing. >> >> Someone has a workaround? >> > > Not yet, but you can compile once wi

Re: GWT 2.5, -compileReport and closure compiler

2012-07-02 Thread Jens
> > I've noticed that if I enable the closure compiler the -compileReport flag > is totaly ignored and the soycReport in the extra folder is missing. > > Someone has a workaround? > Not yet, but you can compile once without closure compiler to see whats going on during compile and then compile

Method findById requestFactory

2012-07-02 Thread bond
Hello everybody, I'm a question: I'm using request factory with mvp pattern. I have a CellTable and when dataProvider is inovoked, I see that on server is called the count() and getRow() method but is also called the method findById() for every record that previus method fetched. Can Anyone exp

Re: Need a tool to find out client side coverage .

2012-07-02 Thread Thomas Broyer
On Monday, July 2, 2012 3:06:49 PM UTC+2, Guru wrote: > > I too have the same requirement as mentioned in this post. I am able to > generate the server side coverage report after instrumenting the classes > and running the automated tests. > Any pointers on how to get the same report for client

Re: Validation in 2.5 RC1

2012-07-02 Thread Thomas Broyer
On Monday, July 2, 2012 8:47:50 AM UTC+2, Cengiz wrote: > > Does anyone know what happened to > com.google.gwt.validation.client.Validation in 2.5? What are we supposed > to use in its place? Nothing special, its still there. The module is called com.google.gwt.validation.Validation though (

Using gwt to change java files

2012-07-02 Thread mehdi benchoufi
I am really new to gwt but I have already posted a question and I don't really understand. I am working on a project that had already been developed. This project uses get and the javascript comes from java files. I wanted to make some changes on one of these java files. SO I was told I needed to

Using gwt to change java files

2012-07-02 Thread mehdi benchoufi
Hi, I am really new to gwt but I have already posted a question and I don't really understand. I am working on a project that had already been developed. This project uses get and the javascript comes from java files. I wanted to make some changes on one of these java files. SO I was told I

How to convert an object that contains List to json using AutoBean

2012-07-02 Thread Kelvin Kao
Does anyone have successfully convert List of objects to JSON by using AutoBean? it seems it's giving me error like null cannot be in getter method.. anyone has an simple example to share? thx. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit"

Re: Need a tool to find out client side coverage .

2012-07-02 Thread Guru
I too have the same requirement as mentioned in this post. I am able to generate the server side coverage report after instrumenting the classes and running the automated tests. Any pointers on how to get the same report for client side code ? > > > > -- You received this message because yo

Validation in 2.5 RC1

2012-07-02 Thread Cengiz
Does anyone know what happened to com.google.gwt.validation.client.Validation in 2.5? What are we supposed to use in its place? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.goo

Storing/retrieving shared objects in a database

2012-07-02 Thread Peter
Hi guys, Basically, as the title says, I would like to store a shared object in a MySQL database and retrieve it at a later time. So I wrote a simple shared class Test: public class Test implements Serializable { private int statusId; public Test() { } public Test(int statusId)

GWT 2.5, -compileReport and closure compiler

2012-07-02 Thread Stefano Ciccarelli
I've noticed that if I enable the closure compiler the -compileReport flag is totaly ignored and the soycReport in the extra folder is missing. Someone has a workaround? -- Nel mondo esistono 10 categorie di persone, quelle che capiscono il binario e quelle che non lo capiscono. -- You receive

Re: Strategy for saving data project

2012-07-02 Thread Thomas Broyer
On Monday, July 2, 2012 9:31:56 AM UTC+2, Thomas Lefort wrote: > > Hi, > > I was relying on mayStop to save my user's project when they leave the > activity but it seems to work in some cases only, ie when navigating from > one activity to another but not when leaving the application or closing

Re: How to use Super Dev Mode

2012-07-02 Thread Paul Robinson
On 23/06/12 12:30, Jens wrote: I think currently the codeserver only serves the compiled JavaScript of your app. So you still have to use a server that serves your server side code. No, it serves source too. As Brian said, use -src arguments to the code server. 3.) copy your apps host html pa

Strategy for saving data project

2012-07-02 Thread Thomas Lefort
Hi, I was relying on mayStop to save my user's project when they leave the activity but it seems to work in some cases only, ie when navigating from one activity to another but not when leaving the application or closing the browser... I don't know if it is normal? may be there is "not enough t

Re: issue with rpc when behind a reverse proxy

2012-07-02 Thread Thomas Lefort
Yes, thanks Jens. In the end I did what you suggested and overrode the doGetSerializationPolicy to make sure it pointed to the right path. It does work fine indeed. On Wednesday, 27 June 2012 20:43:07 UTC+2, Jens wrote: > > Same answer: > https://groups.google.com/forum/?fromgroups#!topic/goo