Re: SuggestBox
Hm have added a VCH to clear the other loaded stuff. VCH fires before the Suggestion picked. On Dec 6, 5:32 pm, Jon Vaughan wrote: > I have a suggest box > > the user selects something from it, causing other things to load in > the page > > they then go back to the suggest box and type some stuff into it which > doesn't result in a new selection > > how can i determine that the value has changed to clear the other > loaded things in the page without introducing a race condition between > the valuechangehandler and the suggestionhandler when a suggestion > actually is picked? -- 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, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
SuggestBox
I have a suggest box the user selects something from it, causing other things to load in the page they then go back to the suggest box and type some stuff into it which doesn't result in a new selection how can i determine that the value has changed to clear the other loaded things in the page without introducing a race condition between the valuechangehandler and the suggestionhandler when a suggestion actually is picked? -- 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, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: GWT +maven war plugin - Missing files after compile
Is the war folder a target folder or a source folder? You would have more luck following the std maven war plugin convention as detailed http://mojo.codehaus.org/gwt-maven-plugin/project.html On Nov 3, 3:02 pm, "stephan.beu...@googlemail.com" wrote: > Hello, > > I've problems using the gwt-maven-plugin. After compiling the gwt > project, there are some files missing in the war. > > My pom.xml: > > --- > > > http://maven.apache.org/POM/4.0.0"; > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; > xsi:schemaLocation="http:// > maven.apache.org/POM/4.0.0http://maven.apache.org/maven-v4_0_0.xsd";> > > > dashboard2 > com.test > 0.0.1-SNAPSHOT > > 4.0.0 > com.test > dashboardClient > test Dashboard Client > war > 0.0.1-SNAPSHOT > > > > 1.6 > 1.6 > > > > > > > > com.test > dashboardServer > ${project.version} > > > > > org.springframework > spring-webmvc > > > > > com.google.gwt > gwt-servlet > runtime > > > com.google.gwt > gwt-user > provided > > > com.octo.gwt.test > gwt-test-utils > test > > > > > junit > junit > 4.7 > test > > > > > war/WEB-INF/classes > > > src/main/java > > **/*.java > **/*.gwt.xml > > > > src/main/resources > > **/*.html > **/*.css > > > > > > org.codehaus.mojo > gwt-maven-plugin > 1.2 > > > > compile > test > resources > > > > > > com.test.dashboard.Application > > com.test.dashboard.Application/Application.html runTarget> > > > > > org.apache.maven.plugins > maven-compiler-plugin > 2.0.2 > > > ${maven.compiler.source} > > ${maven.compiler.target} > > > > org.apache.maven.plugins > maven-war-plugin > 2.1 > > > war > war > > src/main/webapp/WEB-INF/web.xml > > > > > maven-invoker-plugin > > > copy-deps > compile > > run > > > > . >
UiFactory arguments
The doc for UiFactory says "If your factory method needs arguments, those will be required as attributes.". The javadoc for the annotation says "The parameter names of the constructor are treated as required xml element attribute values." So why do I get: [ERROR] missing required attribute(s): barUnit barHeight For this: ... with this: @UiFactory public TabLayoutPanel createTabLayoutPanel(String barUnit, String barHeight) { return new TabLayoutPanel(Double.valueOf(barHeight), Unit.valueOf(barUnit), messageSource); } Sure I've done something stupid, but what? -- 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, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: Serialization whitelist
aha, that is helpful. I didn't know about the existence of the {App}.rpc.log file (is that documented anywhere?) for anyone reading this who isn't aware, this log file is presumably created as the compiler works out what types are reachable and whether they are serializable and goes something like: com.foo.bar.MyClass Serialization status Instantiable Path 'com.foo.bar.MyClass' is reachable as a subtype of type 'interface com.bar.whatever.ICommand' Started from 'com.itf.shared.actions.ICommand' and so on. On Apr 12, 3:05 pm, kozura wrote: > Yes, T must extend a serializable type, as you said otherwise GWT > can't tell what it might be. Yes serialization discovery issues are a > pain...right now you just have to stare through the RPC log and try to > divine what happened. > > On Apr 12, 4:46 am, Jon Vaughan wrote: > > > > > I think the problem is that on this example the type of the payload > > can be anything (it is not required to be serializable); given that > > this is possible, GWT must say, OK, then this type itself cannot be > > serialized (I would like this to fail the compile though somehow) > > > On Apr 12, 10:27 am, Jon Vaughan wrote: > > > > Hi, > > > > I have a serialization issue to solve, where a class that is passed to > > > the client, and is marked as IsSerializable, with a default no arg > > > constructor, does not end up in the whitelist. There are no messages > > > during the gwt compile (at debug level) > > > > 1. Does anyone have any thoughts about how I could automatically test > > > for, or fail a build, if this is the case? > > > 2. Does anyone know how I can get detailed information from GWT about > > > this type of issue? > > > 3. Anybody got any ideas what the problem itself is? :) (Are there > > > issues with generic types and serialization? Do I have to explicitly > > > whitelist the variations I want to use somehow?) > > > > Thanks if anyone has the time to look > > > > Jon > > > > My specific problem is as follows: Type > > > 'com.itf.shared.actions.ResponseWithPayload' was not included in the > > > set of types which can be serialized by this SerializationPolicy > > > > With the following command pattern style interface (where > > > SingleQuestion is itself in the whitelist) > > > > 1. The service > > > > public interface ApplicationService extends RemoteService { > > > T execute(ICommand action); > > > > } > > > > 2. The command > > > > public class SingleQuestionRequest implements > > > ICommand>, IsSerializable { > > > public SingleQuestionRequest() { > > > } > > > > } > > > > 3. The response class that doesn't end up in the whitelist > > > > public class ResponseWithPayload implements IResponse, > > > IsSerializable { > > > private T payload; > > > > @SuppressWarnings("unused") > > > private ResponseWithPayload() { > > > } > > > > public ResponseWithPayload(T payload) { > > > super(); > > > this.payload = payload; > > > } > > > > public T getPayload() { > > > return payload; > > > } > > > > } -- 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, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: Serialization whitelist
I think the problem is that on this example the type of the payload can be anything (it is not required to be serializable); given that this is possible, GWT must say, OK, then this type itself cannot be serialized (I would like this to fail the compile though somehow) On Apr 12, 10:27 am, Jon Vaughan wrote: > Hi, > > I have a serialization issue to solve, where a class that is passed to > the client, and is marked as IsSerializable, with a default no arg > constructor, does not end up in the whitelist. There are no messages > during the gwt compile (at debug level) > > 1. Does anyone have any thoughts about how I could automatically test > for, or fail a build, if this is the case? > 2. Does anyone know how I can get detailed information from GWT about > this type of issue? > 3. Anybody got any ideas what the problem itself is? :) (Are there > issues with generic types and serialization? Do I have to explicitly > whitelist the variations I want to use somehow?) > > Thanks if anyone has the time to look > > Jon > > My specific problem is as follows: Type > 'com.itf.shared.actions.ResponseWithPayload' was not included in the > set of types which can be serialized by this SerializationPolicy > > With the following command pattern style interface (where > SingleQuestion is itself in the whitelist) > > 1. The service > > public interface ApplicationService extends RemoteService { > T execute(ICommand action); > > } > > 2. The command > > public class SingleQuestionRequest implements > ICommand>, IsSerializable { > public SingleQuestionRequest() { > } > > } > > 3. The response class that doesn't end up in the whitelist > > public class ResponseWithPayload implements IResponse, > IsSerializable { > private T payload; > > @SuppressWarnings("unused") > private ResponseWithPayload() { > } > > public ResponseWithPayload(T payload) { > super(); > this.payload = payload; > } > > public T getPayload() { > return payload; > } > > > > } -- 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, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Serialization whitelist
Hi, I have a serialization issue to solve, where a class that is passed to the client, and is marked as IsSerializable, with a default no arg constructor, does not end up in the whitelist. There are no messages during the gwt compile (at debug level) 1. Does anyone have any thoughts about how I could automatically test for, or fail a build, if this is the case? 2. Does anyone know how I can get detailed information from GWT about this type of issue? 3. Anybody got any ideas what the problem itself is? :) (Are there issues with generic types and serialization? Do I have to explicitly whitelist the variations I want to use somehow?) Thanks if anyone has the time to look Jon My specific problem is as follows: Type 'com.itf.shared.actions.ResponseWithPayload' was not included in the set of types which can be serialized by this SerializationPolicy With the following command pattern style interface (where SingleQuestion is itself in the whitelist) 1. The service public interface ApplicationService extends RemoteService { T execute(ICommand action); } 2. The command public class SingleQuestionRequest implements ICommand>, IsSerializable { public SingleQuestionRequest() { } } 3. The response class that doesn't end up in the whitelist public class ResponseWithPayload implements IResponse, IsSerializable { private T payload; @SuppressWarnings("unused") private ResponseWithPayload() { } public ResponseWithPayload(T payload) { super(); this.payload = payload; } public T getPayload() { return payload; } } -- 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, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: Inter-frame communication
I was looking through this because we are also looking at options for multi-module / portal style app. The thing about postMessage is that it is only supported in FF3, Safari 4, IE8 etc. The JQuery version falls back to a document.location.hash version for other browsers, which ends up in your browser history and collides with the gwt history mechanism. Of course, if you have multiple iframes then browser history is a big problem anyway. J -- 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, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: iFrame
You'd have to add a flextable to the page that you are showing in your iframe On Apr 6, 4:06 pm, "gadaleta.marco" wrote: > Thx. But if i want to add a widget element, a flextabale for > example??? > > On 6 Apr, 16:46, mariyan nenchev wrote: > > > > > Hi, > > > Frame frame = new Frame(); > > > frame.setUrl(url); -- 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, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: Best practices for GWT-Eclipse and war deployment
It would be better practice not to rely on the IDE; use the plugin to help you with running in dev mode and getting the project structure set-up, but then use a build tool like Maven or Ant to build the war. That way you remove any chance of human error in releasing your code and you're not tied to a particular IDE / workspace configuration etc. On Apr 6, 1:56 pm, bradrover wrote: > Hello, I have a new GWT project, created with the Eclipse plug-in. I'm > trying to figure out the best way to manage deployment and svn > together with this project structure. Its difficult because the war > folder has files in it that need to be under source control, yet I > need to create a tomcat deployment from this folder. So my deployment > has all these .svn folders in it. Right now I've resorted to just > stripping out the .svn files from the war folder hierarchy, and > zipping it up from there. Seems like there should be a better way. -- 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, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Architectural ideas for a multi-app/module project
Hi all. I'm beginning to build a set of GWT applications for a client. The clients customers will purchase a set of these applications (not necessarily all of them) and when deployed these applications will work together (imagine, for example, a 'Contacts' app, a 'Billing' app, 'Timerecording' etc), linking back and forward between information in each. The client has a requirement that each app is independently deployable. This would rule out the option of a monolithic compile despite its many advantages (optimization, memory footprint etc) - However they would also like the apps to all exist in a single window, to prevent confusion about pop-ups etc - And all of this has to work on relatively low powered machines and be IE6 compatible Possible options are iframes or a portal framework but in my view both of those are fairly horrible. Iframes are going to mean history and inter app communication issues. Portal frameworks mean an extra layer of effort, especially working out how to integrate the inter-portal communication with gwt. Alternatively I need to work out how to circumvent their independently deployable requirement. Certainly there are enormous advantages to the single GWT compile. The problem for the client is that if the UI has a common custom widget used in a couple of the apps, modifying it would mean retesting all apps that make use of it. One solution to this I suppose is total codebase independence, with no common dependencies, or versioned widgets somehow, and I could argue for that style of approach. So I was wondering, does anyone have any alternative ideas, or thoughts about how they would approach the same situation Thanks Jon -- 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, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: Upgraded to GWT 2, tests now time out
I've just seen that: "Additionally, correct tests can sometimes fail on HtmlUnit, either because the HtmlUnit support for that feature is lacking or because of HtmlUnit's issues with flakiness when running asynchronous tests." Is this timeout / no response one of the types of flakiness that might be expected? Does this statement only apply where my tests are asynchronous (i.e. with a Timer?) The tests run easily within the timeout when run from the plug-in I've seen various similar bug reports but nothing that exactly matches: http://www.google.co.uk/search?hl=en&lr=&ei=LetFS5z2Lciu4Qac4832Ag&sa=X&oi=spell&resnum=0&ct=result&cd=1&ved=0CA0QBSgA&q=gwt+%22responded+back+to+JUnitShell%22&spell=1 The thing is that I don't have an intermittent problem - it always fails. On Jan 6, 4:00 pm, Jon Vaughan wrote: > Hi, > > I recently upgraded to GWT 2 from 1.5.x. My tests, for some reason, > are now failing when I run them from Ant: > > run-gwt-tests: > [junit] WARNING: multiple versions of ant detected in path for > junit > [junit] jar:file:/C:/Program%20Files/eclipse/plugins/ > org.apache.ant_1.7.1.v20090120-1145/lib/ant.jar!/org/apache/tools/ant/ > Project.class > [junit] and jar:file:/C:/_code/bionicbooks/lib/build-Windows/ > gwt-dev-2.0.0.jar!/org/apache/tools/ant/Project.class > [junit] Running > com.monksvaughan.accounts.test.ui.JUnitDropDownControls > [junit] - 1 client(s) haven't responded back to JUnitShell since > the start of the test. > [junit] Actual time elapsed: 60.035 seconds. > [junit] ) > > BUILD FAILED > > When I run the same test using the GWT eclipse plugin, it works > without a problem. My Junit task is very simple: > > > > > > > > > > > > > > > > So presumably this is a classpath problem. The testing doc (http:// > code.google.com/webtoolkit/doc/latest/DevGuideTesting.html) says it > should include: > > Your project's src directory > Your project's bin directory > The gwt-user.jar library > The gwt-dev.jar library > The junit.jar library > > Which my "test.class.path" includes (I have double checked with -v) > > Anybody have any ideas or seen something similar? It's not the 2 Ant > versions is it? I am currently using Junit 3.8.1 rather than JUnit 4, > but presumably that isn't the issue either. Thoughts gratefully > received. > > Jon -- 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, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Upgraded to GWT 2, tests now time out
Hi, I recently upgraded to GWT 2 from 1.5.x. My tests, for some reason, are now failing when I run them from Ant: run-gwt-tests: [junit] WARNING: multiple versions of ant detected in path for junit [junit] jar:file:/C:/Program%20Files/eclipse/plugins/ org.apache.ant_1.7.1.v20090120-1145/lib/ant.jar!/org/apache/tools/ant/ Project.class [junit] and jar:file:/C:/_code/bionicbooks/lib/build-Windows/ gwt-dev-2.0.0.jar!/org/apache/tools/ant/Project.class [junit] Running com.monksvaughan.accounts.test.ui.JUnitDropDownControls [junit] - 1 client(s) haven't responded back to JUnitShell since the start of the test. [junit] Actual time elapsed: 60.035 seconds. [junit] ) BUILD FAILED When I run the same test using the GWT eclipse plugin, it works without a problem. My Junit task is very simple: So presumably this is a classpath problem. The testing doc (http:// code.google.com/webtoolkit/doc/latest/DevGuideTesting.html) says it should include: Your project's src directory Your project's bin directory The gwt-user.jar library The gwt-dev.jar library The junit.jar library Which my "test.class.path" includes (I have double checked with -v) Anybody have any ideas or seen something similar? It's not the 2 Ant versions is it? I am currently using Junit 3.8.1 rather than JUnit 4, but presumably that isn't the issue either. Thoughts gratefully received. Jon -- 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, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Re: Cannot install GWT Eclipse plug-in
I had the same problem, on Win 7 64 bit, and adding the galileo update site (http://download.eclipse.org/releases/galileo) fixed it for me too. On Dec 24, 4:59 pm, Nikhil wrote: > I was stumped with the same problem. I was able to fix it by > addinghttp://download.eclipse.org/releases/galileoto the list of available > sites and keeping the "Contact all available sites.." checked. > > On Dec 11, 12:20 am, robert_hancock wrote: > > > I have the same issue with 3.5.1. "Contact > > Other Update Sites for Needed Software" is checked. > > > This is the error message I receive: > > > Cannot complete the install because one or more required items could > > not be found. > > Software being installed: Google Plugin for Eclipse 3.5 > > 1.2.0.v200912062003 > > (com.google.gdt.eclipse.suite.e35.feature.feature.group > > 1.2.0.v200912062003) > > Missing requirement: Google Plugin for Eclipse 3.5 > > 1.2.0.v200912062003 > > (com.google.gdt.eclipse.suite.e35.feature.feature.group > > 1.2.0.v200912062003)requires'org.eclipse.wst.css.core 0.0.0' but it > > could not be found > > > Does someone have the Eclipse site that we can add to the list? > > > On Dec 10, 11:09 am, Rajeev Dayal wrote:> There have > > been reports of the 64-bit versions of Eclipse not having the > > > default update sites (such as the Galileo Update Site) included. Since the > > > Google Plugin for Eclipse depends on WST, Eclipse needs to hit the Galileo > > > update site during installation. > > > > Try Eclipse 3.5.1 and see if you run into the same issue. Ensure that when > > > you're installing the Google Plugin for Eclipse, the option to "Contact > > > Other Update Sites for Needed Software" is checked. > > > > On Thu, Dec 10, 2009 at 7:00 AM, Nixarn wrote: > > > > Happens to me too :( > > > > > I'm on Windows 7 64bit, got a 32bit version of Eclipse 2.5 for Java > > > > (Not EE). Fresh eclipse install and havn't had in any older version of > > > > GWT. > > > > > On Oct 29, 3:01 am, "Gamer_Z." wrote: > > > > > I cannot install the GWT plug-in on Eclipse (3.5/Galileo). I have re- > > > > > installed Eclipse several times. I have also copied Eclipse on a > > > > > flash drive to a friend's computer and the plug-in installed fine > > > > > there, so it is not a problem with Eclipse. When I get to step four > > > > > ofhttp://code.google.com/eclipse/docs/install-eclipse-3.5.html, I get > > > > > the message "The operation cannot be completed. See the details." > > > > > The "Details" are below: > > > > > > Cannot complete the install because one or more required items could > > > > > not be found. > > > > > Software being installed: Google Web Toolkit SDK 1.7.1 > > > > > 1.7.1.v200909221731 > > > > > (com.google.gwt.eclipse.sdkbundle.e35.feature.feature.group > > > > > 1.7.1.v200909221731) > > > > > Missing requirement: Google Web Toolkit Plugin 1.1.2.v200910130758 > > > > > (com.google.gwt.eclipse.core 1.1.2.v200910130758)requires'bundle > > > > >org.eclipse.wst.sse.core0.0.0' but it could not be found > > > > > Missing requirement: Google Web Toolkit Plugin 1.1.2.v200910131704 > > > > > (com.google.gwt.eclipse.core 1.1.2.v200910131704)requires'bundle > > > > >org.eclipse.wst.sse.core0.0.0' but it could not be found > > > > > Cannot satisfy dependency: > > > > > From: Google Web Toolkit SDK 1.7.1 1.7.1.v200909221731 > > > > > (com.google.gwt.eclipse.sdkbundle.e35.feature.feature.group > > > > > 1.7.1.v200909221731) > > > > > To: com.google.gwt.eclipse.sdkbundle.win32 [1.7.1.v200909221731] > > > > > Cannot satisfy dependency: > > > > > From: Google Web Toolkit SDK for Win32 1.7.1.v200909221731 > > > > > (com.google.gwt.eclipse.sdkbundle.win32 1.7.1.v200909221731) > > > > > To:bundlecom.google.gwt.eclipse.core 0.0.0 > > > > > -- > > > > > 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, send email to > > > > google-web-toolkit+unsubscr...@googlegroups.com > > > cr...@googlegroups.com> > > > > . > > > > For more options, visit this group at > > > >http://groups.google.com/group/google-web-toolkit?hl=en. -- 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, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
GWT i18n - Dictionary message placeholders
Hi all, Just a quick query - is it possible to do placeholder substitution with messages obtained from a Dictionary? i..e into something like: permissionDenied = Error {0}: User {1} Permission denied. I couldn't see anything obvious in the doc or forums; does a Dictionary link in any way to a Messages instance? Thanks Jon -- 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, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=.
Re: Who's Using GWT?
We're using GWT for the whole UI of Bionic Books, which is a small business accounting application: http://www.bionicbooks.com. Honestly I love GWT; Bionic Books has been written completely by 1 person (me) and I believe that there is no other technology that would have allowed me to build something of this sophistication in the relatively short time it took. In terms of requested features I can't really think of much; we, as I'm sure almost everyone has done, have written quite a lot of bespoke controls with richer functionality, e.g. we have our own combo boxes, multilevel dropdowns, extended ajax-ey list boxes with "Loading...", etc and I think that there is possibly some ground to be gained in terms of richer controls. At some point we're going to review our codebase to see what we can contribute back. Thanks to all at Google and to everyone else who has submitted to GWT Jon Vaughan Bionic Books On Dec 12 2008, 1:39 am, Sumit Chandel wrote: > Hello everyone, > > We've recently updated the GWT homepage to include a page displaying a > non-exhaustive list of applications that are built with GWT. We were > also able to capture a few developers on video for those who happened > to be around the Google Mountain View area and developed awesome > applications using GWT. Check out more details on both of these at the > link below: > > Who's Using GWT?:http://code.google.com/webtoolkit/app_gallery.html > > It's great that we were able to catch some of our local developers on > video, but we know there are other great stories out there from other > developers in the community. So, I thought it would be cool if I > stickied this Groups thread for community members to share their > experience with everyone. > > Feel free to post up your own GWT application(s), along with your most > loved / requested features and any tips and tricks you've come across > as you developed your applications that you'd like to share with the > rest of the community. Looking forward to hearing from you. > > Cheers, > -Sumit Chandel --~--~-~--~~~---~--~~ 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-toolkit+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~--~~~~--~~--~--~---