Re: Channel API for GWT

2011-04-15 Thread dilbert
try here: http://code.google.com/p/gwt-gae-channel/ It is from a google guy but I haven't tried it. -- 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: GWT 2.2 and gwt-maps.jar not compatible

2011-02-14 Thread dilbert
True. You can go here: http://code.google.com/p/gwt-google-apis/wiki/GettingStartedSource and follow the instructions to rebuild the maps with GWT 2.2. After the build you will get a .../maps/build/lib/ directory with the gwt-maps.jar inside. -- You received this message because you are subscri

Re: Can CellWidgets contain custom composite widgets ?

2011-02-14 Thread dilbert
Is the UiBinder variation available in GWT 2.2? If it is, is there any example on how to use it ? Thanks. On Wednesday, February 2, 2011 4:06:35 PM UTC+1, John LaBanca wrote: > > Also, we're working on a variation of UiBinder that can generate HTML > strings and works with Cells. That should m

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-26 Thread dilbert
I have seen something similar and posted an issue here: http://code.google.com/p/google-web-toolkit/issues/detail?id=5740 The conclusion was that it is a packaging bug in OpenSUSE. What operating system are You using? Maybe it is related so please take a look at the issue and tell us if it behave

Re: GIN MVP 2.1 Example

2010-12-20 Thread dilbert
AFAIK there is nothing MVP specific in gin. Your Activities, Views, etc. are injected the same as any other objects. I forgot to mention earlier that some advanced gin techniques can be learned from the test cases found here: http://code.google.com/p/google-gin/source/browse/#svn%2Ftrunk%2Ftest%

Re: GIN MVP 2.1 Example

2010-12-20 Thread dilbert
Try here: http://code.google.com/p/google-gin/source/browse/#svn%2Ftrunk%2Fsamples These are the official gin samples: Higher lower and simple -- 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-we

Re: Announcing Chrome Developer Plugin support for Mac and Linux

2010-12-09 Thread dilbert
Does not work on chromium 9.0.598.0 (openSuse 11.3). The app keeps going to the "missing plugin" page. Also it would be nice if the plugin could somehow turn off the "Page unresponsive" popups in Chrome. On Dec 9, 1:10 pm, Filipe Sousa wrote: > On Wednesday, December 8, 2010 6:47:35 PM UTC, Peter

Re: New Showcase online!

2010-10-07 Thread dilbert
I think Brian talks about this. http://gwt.google.com/samples/Showcase/Showcase.html#!CwBasicPopup On Oct 7, 2:16 pm, Jambi wrote: > I don´t get this one...!? > > I just wanted to mention that there are some new examples like the > cell widgets > > On Oct 7, 1:14 am, Brian wrote: > > > > > > > >

Re: Using Maven plugin with spring 3.x results in "No source code is available for type ...; did you forget to inherit a required module?" while compiling

2010-03-10 Thread dilbert
In WeatherClient.java You are referencing com.ecp.manager.WeatherManagerAsync. Perhaps You meant to reference com.ecp.service.WeatherServiceAsync.java The type com.ecp.manager.WeatherManagerAsync is not in the java folder of your project. Regards, G On Mar 10, 9:08 am, Ludovic JEANSON wrote: > H

Re: Pressing the enter key in the SuggestBox popup fire onKeyUp event! How to disable this?

2009-12-26 Thread dilbert
Have you tried checking isSuggestionListShowing() of the SuggestBox in the KeyUpHandler. If the method returns true You could skip processing the event. I haven't tried it but it could work. On Dec 22, 12:35 pm, "ss.require" wrote: > Hi there! > If I select an option in the SuggestBox popup by pr