vote up 15 vote down star
14

Question for all the GWT gurus out there - which is the best GWT widgets library out there? And why?

List based on the answers:

flag

14 Answers

vote up 7 vote down

Depends on what you mean by "best". Best looking? Best API? Best for extending to your own custom needs?

E.g., I was just evaluating table classes to use in our application. We've been using GWT-Ext, but it has many performance problems for us, and is very hard to get the tables sized the way we need them. I came very close to going with GWT-Mosaic, but decided instead to build off the widgets in the GWT Incubator.

So, why did I make this choice? It seems that too many of the libraries out there come with their own, for lack of a better word, baggage. Either you have to dive whole-hog into some MVC framework (which may not be entirely compatible with the rest of your code base), or you have to adopt someone's new fangled layout system, or you have to live with the fact that you cannot really debug the code (because its just JSNI wrappers).

Don't get me wrong, the GWT Incubator isn't perfect...the widgets there are in some amount of flux. In my case, this was the best choice, though. It gives me good (but definitely not perfect):

  • API
  • Extensibility
  • Look and feel (well, this is kinda weak, but that's what CSS is for.)

So...the answer (for me) is a combination of:

  • Stock GWT widgets (with lots of custom styling)
  • GWT Incubator tables
  • A few home-grown widgets

(I should add: the "baggage" I'm referring to isn't necessarily a bad thing. But, if you just want a widget or two, it can raise the bar on what it takes to just get your work done and how good youe application looks.)

link|flag
Most of the widget libraries require some license due to the dependency on some external AJAX library. This, as well, add extra size to your solution. Note, as well, that most of the widget libraries depend on one or more additional external components. – IgorM May 18 at 20:09
vote up 5 vote down

I prefer vanilla GWT. Some of the other APIs look pretty and their showcases really show off the widgets, but I always find that the performance isn't the best....when I say performance I mean more like response time. I hate when an application feels sluggish.

link|flag
vote up 2 vote down

Most of the libraries mentioned are not open source and even worse: are just wrappers on top of a JavaScript library. The power of GWT lies in the fact that the application works on different browsers (because of the code generation for the "big" browsers specifically). These JavaScript underlying libraries can cause lots of problems.

I agree with jgindin GWT Incubator and GWT Mosaic are the best so far.

link|flag
vote up 2 vote down

GWT alone is a pretty good library.

I didn't use all of the mentioned ones but can recommend Ext GWT.

link|flag
I agree with bare GWT. Along with incubator projects (code.google.com/p/google-web-toolkit-incubator/…), you can implement anything basically. I used MyGwt but it sucks when they shut down the project and changed its name and all the forums and support, licence are changed – dkberktas Nov 27 at 0:11
That must be terrible. It's not a very practical way of maintaining a piece of software. – ZiG yesterday
vote up 2 vote down

Not saying it's "the best", but I've been using GWT-Ext at work lately. It's got some pros and cons:

Pros:

  • Relatively easy to setup and use
  • Decent sized community behind it
  • LOTS of examples online, all of which have accompanying code
  • Good selection of widgets that cover a wide range of functionality

Cons:

  • Makes assumptions about your data's format and structure that you may not be able to accommodate
  • Library is just a JSNI wrapper, which makes it harder to debug and extend
  • Future support and development on the library is uncertain
  • Some annoying cross-browser issues still exist (especially with layouts)
  • Search function on their forums is essentially useless. (This is becoming a big pet peeve of mine >_<)
link|flag
vote up 1 vote down

Google's default library is the most powerful library.

Ext GWT adds bells and whistles but apart from that it's similar to Google's.

link|flag
vote up 1 vote down

We're currently liking the GWT Mosaic widgets. We've worked with ext-JS and we've rolled our own widgets in the past. ext-JS licensing and bulk were a problem for us. Rolling our own isn't what we want to do. Mosaic gives us a happy middle ground which we like to think will be an even happier middle ground as the project matures.

link|flag
vote up 0 vote down

Comparison of the two EXTs here with pros and cons.

link|flag
vote up 0 vote down

We have built a large HR portal and a couple of smaller applications using GWT Portlets. The focus of the project is not so much on building a collection of widgets but on creating a simple programming model.

From the website:

GWT Portlets is a free open source web framework for building GWT (Google Web Toolkit) applications. It defines a very simple & productive, yet powerful programming model to build good looking, modular GWT applications.

The programming model is somewhat similar to writing JSR168 portlets for a portal server (Liferay, JBoss Portal etc.). The "portal" is your application built using the GWT Portlets framework as a library. Application functionality is developed as loosely coupled Portlets each with an optional server side DataProvider.

link|flag
vote up 0 vote down

I would say if you need only a few widgets then build your own. You might copy-paste some concepts from the libraries mentioned. But they all lack one or the other thing. I have played with most of them and abandoned every one.

link|flag
vote up 0 vote down

One thing to be aware of is that from the forums GWT-Ext looks like it will no longer be developed/maintained much (maybe not at all?). On their website they recommend migrating to SmartGWT.

link|flag
vote up 0 vote down

SmartGWT is a good library and it has a lot of examples but the user interface is not that sleek. For user interface Ext GWT is good.

link|flag
vote up 0 vote down

Didn't see this one mentioned, Vaadin (previously known is IT Mill Toolkit), but maybe that's because it's not technically exactly GWT; as their FAQ says:

How does this differ from GWT?

GWT applications run in the browser, while Vaadin applications run on the server. We do actually use GWT as a "rendering engine" on the browser side, so you can combine Vaadin and GWT.

link|flag
vote up 0 vote down

smartGWT is slow and examples are lacking and it is very hard to find answers for even the basic questions, i.e. see all my non answered questions on this forum. I'm dumping smartgwt.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.