Re: GWT 2.3 Designer

2011-05-06 Thread gwtomni gwtomni
you can also try with https instead of http. 2011/5/6 Eric Clayberg clayb...@google.com The ZIP file links for the full GWT Designer version are here... http://dl.google.com/eclipse/inst/d2gwt/latest/3.7/GWTDesigner_v2.3.0_UpdateSite_for_Eclipse3.7.zip

RequestFactory edit List of Proxies

2011-05-13 Thread gwtomni gwtomni
Hello everyone, I've retreived a list of contactProxies from the server. now I'm trying to modify these contactProxies and to send the modification to the server. unfortunatly I've this error: 16:32:36.635 [ERROR] [ApplicationStarter] Uncaught exception escaped

the new refactored RequestFactory VS old requestFactory

2011-05-15 Thread gwtomni gwtomni
Hello everyone, please can you tell me what's the différence between the new refactored RequestFactory and old requestFactory. thank you. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

RequestFactory books

2011-05-15 Thread gwtomni gwtomni
Hello everyone, can you please, help me find some books about RequestFactory in very advanced and detailed way. thank you. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: the new refactored RequestFactory VS old requestFactory

2011-05-16 Thread gwtomni gwtomni
Thanks for your answer. -- 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

Re: RequestFactory edit List of Proxies

2011-05-16 Thread gwtomni gwtomni
Thank you for your answer, At the beginning I thought that any object instantiated by the RequestFactory in the server side will still be managed by the RequestFactory it self, and any re-instantiation will be avoided server side. But now I discovered that we have to implement the static

Re: Problem with Helios Eclipse 3.6 Update Repository

2011-05-22 Thread gwtomni gwtomni
Hello, I had the same issue try with: https://dl.google.com/ or https://dl-ssl.google.com/ -- 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

Re: RequestFactory proxy displayed by a CellTable

2011-06-06 Thread gwtomni gwtomni
Hello, can you please give us some more informations: the source code of the method that fire the request to the server ? are you using the same MyRequest object to create your proxies and to call the fire methode ? thx -- You received this message because you are subscribed to the

Re: RequestFactory sending EntityProxy in request parameters

2011-06-06 Thread gwtomni gwtomni
it seems like you don't have the method: public User find(Class? extends User clazz, String id) ; in your locator UserLocator -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

certification

2011-06-23 Thread gwtomni gwtomni
Hello gwtters, I'm wondering if there is some certifications that we can pass like the ones with java JEE etc . thank you for your answers. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

call method inside the ui.xml file

2011-06-24 Thread gwtomni gwtomni
Hello, Can I call a method like show() or center() inside the uibinder xml file. PS. show() and center() for a DialogBox thx -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

passing data between activities

2011-06-24 Thread gwtomni gwtomni
Hello, how can I pass data from one activity to another one respecting MVP pattern ? thx -- 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

Re: passing data between activities

2011-06-24 Thread gwtomni gwtomni
thank you David for your quick response. can I have a link to an example using that technique. thank you very much. -- 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.

Re: passing data between activities

2011-06-24 Thread gwtomni gwtomni
very interesting indeed. http://svn.apache.org/repos/asf/james/hupa/trunk thank you David. -- 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

Re: call method inside the ui.xml file

2011-06-24 Thread gwtomni gwtomni
thank you I was just comparing with other RIA thechnologies like flex. -- 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

HasDataEditor example

2011-06-28 Thread gwtomni gwtomni
Hello, Can I please have a complete example using HasDataEditor + CellTable Thank you. -- 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

Re: HasDataEditor + CellTable

2011-06-30 Thread gwtomni gwtomni
hello, can i have the source code of MyCellTable class ? is it implementing any other kind of interface to make the save() method working. thank you. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

copy an entityProxy to another one

2011-07-01 Thread gwtomni gwtomni
Hello, can you help me please. I want to copy an entityProxy1 to an entityProxy2 with his entire graph. without have to make a glue code (entityProxy2.setProperty(entityProxy1.getProperty())) thx -- You received this message because you are subscribed to the Google Groups Google Web

visibleEvent

2011-07-05 Thread gwtomni gwtomni
hello everyone. is there any event related to the visibility of a widget on the screen ? thank you -- 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

Re: visibleEvent

2011-07-05 Thread gwtomni gwtomni
thank you for your quick response. I have a textBox with a DecoratedPopupPanel on its right like a toolTip. Both of them are in a TabLayoutPanel. problem is when I am switching between tabs, the toolTip is still visible. I want a way to know that the textBox is no longer visible to be able to

TabLayoutPanel autosize

2011-07-06 Thread gwtomni gwtomni
Hello, Is there any way to make the TabLayoutPanel auto-sizable relative to its content ? thx -- 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

gwtTestCase ScheduledCommand

2011-07-07 Thread gwtomni gwtomni
Hello, I have a login() method. inside it I have a ScheduledCommand. I want to test this method with GWTTestCase. unfortunately the instruction inside the scheduledCommand is never called from my gwtTestCase. any Idea ? thx -- You received this message because you are subscribed to

Re: TabLayoutPanel autosize

2011-07-26 Thread gwtomni gwtomni
Unfortunately not yet. but I'm thinking to migrate to GXT 3.0 with the new UIbinder integration. -- 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

Re: Plug-in for Eclipse 3.7 (Indigo)

2011-09-15 Thread gwtomni gwtomni
hello, try to use https instead of http. -- 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

Re: Cloning EntityProxies

2012-04-12 Thread gwtomni gwtomni
try with this: AutoBeanT oldBean = AutoBeanUtils.getAutoBean(oldProxy); AutoBeanT newBean = AutoBeanUtils.getAutoBean(newProxy); AutoBeanCodex.decodeInto(AutoBeanCodex.encode(oldBean), newBean); newProxy = newBean.as();

Re: How to copy/clone ValueProxy?

2012-05-21 Thread gwtomni gwtomni
hello this is what you need: AutoBeanT oldBean = AutoBeanUtils.getAutoBean(oldProxy); AutoBeanT newBean = AutoBeanUtils.getAutoBean(newProxy); AutoBeanCodex.decodeInto(AutoBeanCodex.encode(oldBean), newBean); newProxy = newBean.as(); context.edit(newProxy); -- You received this message

Re: GWT compilation performance

2013-09-08 Thread gwtomni gwtomni
hello Jens, have you compared the performance when switching from HDD to SSD drive ? 2013/8/15 Jens jens.nehlme...@gmail.com I think there is no difference if you use Eclipse to start DevMode or Maven. In both cases you simply run GWT's DevMode which is what gets slower and slower the

-XfragmentCount still experimental in 2.6 rc4

2014-01-10 Thread gwtomni gwtomni
Hello, When can we use the compiler option -XfragmentCount in production mode ? its experimental since 2.5.0. thx. -- 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,

Re: -XfragmentCount still experimental in 2.6 rc4

2014-01-24 Thread gwtomni gwtomni
Hello, It's still experimental in 2.6 too. Can we have a feed back please ? thx 2014/1/10 gwtomni gwtomni gwto...@gmail.com Hello, When can we use the compiler option -XfragmentCount in production mode ? its experimental since 2.5.0. thx. -- You received