Re: Is there any integration between GWT and Google Web Designer ?

2015-10-08 Thread yves
I would rather think about getting from the Designer a GWT-compatible code in java ! Yves -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-w

Is there any integration between GWT and Google Web Designer ?

2015-10-07 Thread yves
Hi It is not about the old GWT Designer but well about this tool https://www.google.com/webdesigner/ ! I don't use Google Web Designer, but I wonder if there might be any mean to produce GWT compatbile code with this tool ? Thanks Yves -- You received this message because you are subsc

Re: GWT components aren't displaying

2013-11-11 Thread yves
Hi, I don't know if you did it or not (not seen in your example) : the "Usuario" dto class must also implements Serializable. HTH Yves Le dimanche 10 novembre 2013 19:34:37 UTC+1, Jairo de Almeida a écrit : > > hi Group, > Someone get problems with serialized pojo in c

Re: CellTable keyboard events troubles in Chrome

2013-11-11 Thread yves
Hi Jens, Thanks a lot for the suggestion, it works. I used the dev version because in the past it was needed for the dev mode. I installed the last stable version, and it is ok also with the dev mode. Thanks Yves Le mardi 5 novembre 2013 21:40:43 UTC+1, Jens a écrit : > > Have you also

Re: CellTable keyboard events troubles in Chrome

2013-11-05 Thread yves
I know this is not a "funny" question, but if someone already had this kind of issue or have any suggestion, help would be very appreciated as I could not make it work correctly in Chrome. GWT-team ? Thanks Yves Le dimanche 3 novembre 2013 19:37:03 UTC+1, yves a écrit : > > H

CellTable keyboard events troubles in Chrome

2013-11-03 Thread yves
for other tests purpose...) Thank you for your help. Yves /** * A simple data type that represents a contact with a unique ID. */ private static class Contact { private static int nextId = 0; private final int id; private String name;

Re: Offline debugging my gwt app

2013-05-22 Thread yves
Hello GWT-team guys ! Nobody has an idea at least if is it a bug or a feature? Thanks a lot for your help Yves -- 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 it, sen

Re: Offline debugging my gwt app

2013-05-21 Thread yves
Yes hosted.html is included in the CACHE section of the manifest. I don't have a "devmode.js" file. Yves -- 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 f

Re: Offline debugging my gwt app

2013-05-20 Thread yves
Thanks for your answer, but my question is about the HTML5 offline feature. Sorry if my post was not clear. The problem is that I can't debug the GWT app while running it without a connection to the site server, thus "offline". Yves -- You received this message because you ar

Offline debugging my gwt app

2013-05-20 Thread yves
to help me test my app when offline, does anybody knows why the app is not running in debug offline mode and how to make it run ? Thanks a lot ! Yves -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this gr

Re: RPC call in Activity onStop()

2013-03-05 Thread yves
onStop() is NOT called in my use case. Yves -- 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 it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To po

Re: Is it possible to create screens at runtime?

2013-03-05 Thread yves
Unless I don't understand your question, this is THE main GWT feature, thus smart-gwt too ! Yves -- 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 it, send an e

Re: RPC call in Activity onStop()

2013-03-05 Thread yves
of watchdog between the client and the server so that the client periodically tells to the server "I am still here". If someone succeeded to make an RPC call during onStop(), I would appreciate the feedback :-) Yves -- You received this message because you are subscribed to the Googl

Re: RPC call in Activity onStop()

2013-02-21 Thread yves
in the client. Thanks for input. Yves -- 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 it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to

Re: RPC call in Activity onStop()

2013-02-21 Thread yves
he server didn't received the call (checked with a lot of debug logs and breakpoints). I'll try again, also with the addClosingHandler() which I didn't knew. Thanks for the suggestion. I'll come back soon. Yves Le mardi 19 février 2013 23:45:32 UTC+1, Jens a écrit : > > I

Re: RPC call in Activity onStop()

2013-02-19 Thread yves
Not any suggestion ? Thanks Yves Le dimanche 17 février 2013 23:47:12 UTC+1, yves a écrit : > > Hi, > > After a search on the net I didn't find an answer to this problem : I need > to make an RPC call from the onStop() function in order to inform the > server that the

RPC call in Activity onStop()

2013-02-17 Thread yves
onStop is called...) Thus my questions are : 1) Is it really impossible to make an RPC call during the onStop process ? 2) In case it is impossible, is there any way to know that the app is closing so I can make a last RPC call ? Thank you for your suggestions. Yves -- You received this messa

Re: Could not load GWT DMP Plugin

2012-10-26 Thread yves
us.Cloud.7.EP" (severity : high) c:\documents and settings\yves\local settings\application data\google\chrome\user data\default\extensions\jpjpnpmbddbjkfaccnmhnkdgjideieim\1.0.11357_0\winnt_x86-msvc\npgwtdevplugin.dll HTH Yves -- You received this message because you are subscribed to th

Re: Inserting a DIV in a GWT Panel

2012-05-06 Thread yves
I'm not sure, but try to remove the style "display:none" or change it (something like footer.setProperty("display", "xxx")) when you append the element. Yves -- You received this message because you are subscribed to the Google Groups "Google Web Too

Re: Which value is returned by Element.getStyle() getProperty() ?

2012-05-04 Thread yves
se the only way to get the "border" value is to read the css file using something like var ss = document.styleSheets[1]; return ss.cssRules[0].style.border; But it is no more a "used value" as defined here https://developer.mozilla.org/en/CSS/used_value Yves -- You received t

Which value is returned by Element.getStyle() getProperty() ?

2012-05-04 Thread yves
e net :-) Thanks for your comments ! Yves -- 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 email to google-web-t

Re: To GWT or Not to GWT

2010-12-16 Thread yves
tributed nor disparate. But in the context of GWT, would it be nonsense (for the future of course) to build new app by using pre-compiled building blocks having their own life-cycle independant of each other ? Yves On 15 déc, 21:40, zixzigma wrote: > if you use JQuery or any other Library, &g

Re: Class is not serializable ?

2010-12-15 Thread yves
Indeed, it seems to be good solutions too. Thanks Yves On 15 déc, 10:15, Paul Robinson wrote: > You don't have to hard code anything to send class names. In the client, > you can use this: > > class MyType  implements Serializable { > >     String className; > >  

Re: Class is not serializable ?

2010-12-14 Thread yves
e packages...) Regards Yves On 14 déc, 15:51, ep wrote: > you dont need to, just put a fullyqualified classname on the wire and > forName() it in the VM. you may also think about providing your custom > field serializer for the class, but actually would be nonsense  since > you anyway canno

Re: Class is not serializable ?

2010-12-14 Thread yves
nd in the (JVM running)-server. In my attempts to workaround the "unserializability" of Class, I tried to use the hashCode() value, unsuccessfully... Regards Yves On 14 déc, 10:42, Paul Robinson wrote: > Class is not gwt-serializable. > > MyType has a non-final, non-trans

Class is not serializable ?

2010-12-13 Thread yves
agged like this: Serialization status Not serializable 3) And when I run my app, I get an "InvocationException" : the client is unable to make an RPC call with a parameter of type MyType. Is it a bug in the compiler, or did I missed something about Class "serializability" ?

Re: uibinders - any available graphical editors and/or intellisense for attributes for uibinders?

2010-11-02 Thread Yves
Yes! Just tried 2.1 with GWT Designer and its awesome with uibinder! I aboslutely love GWT. Good job guys! On Nov 2, 12:57 am, Yves wrote: > the recently released 2.1 would suffice? i vaguely recall that the GWT > Designer that produces uibinder xml requires 2.1 m4 release? please do >

Re: uibinders - any available graphical editors and/or intellisense for attributes for uibinders?

2010-11-01 Thread Yves
the recently released 2.1 would suffice? i vaguely recall that the GWT Designer that produces uibinder xml requires 2.1 m4 release? please do correct me if I am wrong. On Nov 1, 3:41 pm, Thomas Broyer wrote: > On 1 nov, 15:25, Yves wrote: > > > hi guys, > > > love g

uibinders - any available graphical editors and/or intellisense for attributes for uibinders?

2010-11-01 Thread Yves
intellisense for uibinder to show possible attributes in the elements? both eclipse and netbeans are really lacking here. direction needed. regards, Yves -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email

Menu Item and MVP (2)

2010-07-09 Thread yves
} @Override public void fireEvent(GwtEvent event) { // do nothing because we do not receive events } } The view as usual implements MenuPresenter.Display. This seems to me a quite simple and straight solution. Your comments are welcome !

Re: how to use GIN ?

2010-06-28 Thread yves
Thank you for these explanations, I think I begin to understand GIN. .. and I'll read the Guice tutorials :-) (or may be :-( yet another tuto...) Yves PS to GIN team : please make GIN simple to understand for those who don't know Guice and are just trying to improve their client co

Re: how to use GIN ?

2010-06-27 Thread yves
ler(new ClickHandler() { @Override public void onClick(ClickEvent event) { doSearch(event); } }); and how to tell GIN that I need to call doSearch() ? Thanks ! Yves On 27 juin, 19:05, olivier nouguier wrote: &

how to use GIN ?

2010-06-27 Thread yves
doSearch(event); } }); } As I understand, perhaps I am wrong, GIN could do the bind() for me ? But, how should I use GIN for that (if it is really suited for this) ? Thanks for your help ! Yves -- You received this message because you are subscribed to the Google Groups "Google

Re: can not set breakpoint (2)

2010-06-05 Thread yves
Kozura, Thanks for your answer. I suddenly feel very stupid... :-))) I was so confused by the terminlogy "run in development mode" that I forget that debugging is performed obviously in the debug mode Have a nice day Yves On 4 juin, 21:01, kozura wrote: > Maybe try Debug As i

can not set breakpoint (2)

2010-06-04 Thread yves
owser, and the breakpoints didn't worked in eclipse. Does anybody could help me find what is wrong ? Thanks Yves -- 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-tool...@googleg

Problem with DevMode and GWT 2.0.3

2010-04-16 Thread Yves
ow opening, telling me that it's OK, app has been started, but when I open given URL (with gwt.codesrv=127.0.0.1:9997), firefox doesn't ask me for a plugin installation, and breakpoints don't work. What could be the problem? Thanks. Yves. -- You received this message because yo

Re: error in javascript generated by GWT 2.0.3 for IE6 ?

2010-04-04 Thread yves
I found my problem : Instead of > > it should be > So there is no more problem, and no bug in the GWT compiler ! Yves On 3 avr, 19:39, yves wrote: > Hi Everybody, > > Unless I missed something (I just upgraded to 2.0.3 last week) I get > the f

error in javascript generated by GWT 2.0.3 for IE6 ?

2010-04-03 Thread yves
T and / or what I should do to avoid this ? Thanks Yves -- 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-tool...@googlegroups.com. To unsubscribe from this group, se

Unable to see GWT.log messages

2010-03-09 Thread yves
I am using GWT 2.0.3 with Eclipse on W7 I installed the GWT development mode plugin in Chrome to have access to development mode. I ma I want so see my GWT.log messages in development mode When I start my project and paste the URL ending with "gwt.codesrvr=127.0.0.1:9997" the application works o

Unable to see GWT.log messages

2010-03-09 Thread yves
I am using GWT 2.0.3 with Eclipse on W7 I installed the GWT development mode plugin in Chrome to have access to development mode. I ma I want so see my GWT.log messages in development mode When I start my project and paste the URL ending with "gwt.codesrvr=127.0.0.1:9997" the application works o

I just realized that dependency injection is possible with GWT

2009-04-10 Thread Yves
Hello Reading the documentation for the module xml files, i just realize that the tag allows for dependency injection. Suppose i need to use different class implementation depending on my environment (real class for production, mock for development ...). I just have to have two (or more) module

JSF + GWT + Liferay questions

2008-10-07 Thread Yves
Hi guys, Any input or direction is much appreciated on the subject above. I've been dabbling in JSF and trying to utilise GWT for making customised gui components that meet our specific needs. Our end goal is to be able to provide GUI components to be plugged into Liferay. Thus far we've had suc