This looks great. So far I have used ext-gwt, but I stopped because they changed a year ago their license. Felt like a bait and switch. This sort of product is badly needed on GWT to completely kick ass. Also take a look at SmartGwt.
Ext-GWT is a hell when it comes to widget customization. Also the API prevents it to be extensible. From my personal experience (very very tiny data point), most of these "beautiful" GWT frameworks are good only if you want to wipe out something fast and don't mind with the default look.
Vaadin - GWT with a skinnable UI.
21–30 of 31 posts
Re: Vaadin - GWT with a skinnable UI.
#22Between this and GWT (and the Google Wave app they are going to open source), I'm getting pretty interested in Java and using tools like GWT to just generate all of the javascript etc. It almost sounds like it will be /easier/ than Ruby on Rails. Is that crazy?
No I don't think so ... I actually found this library as I was watching the GoogleIO Wave Keynote. When I saw what the wave team did with GWT, compiling Java => Javascript became a viable option in my mind. Before the demo, it had always been a mystery to me as to why anyone would want to use such an absurd amount of abstraction.
Re: Vaadin - GWT with a skinnable UI.
#23Be aware that the paradigm of Vaadin (known as IT Mill Toolkit) is leaning toward server-side. GWT is 100% client-side (plus RPC). My guess is that Vaadin did a bit of UI rendering (prep-ing the HTML) on server-side then send it to client.
Re: Vaadin - GWT with a skinnable UI.
#24Earlier quoted context omitted.
That was my impressin too. Are they trying to erase the boundary between the server and the client? If that's the case it's a terribly misguided thing to do...
Yeah I am trying to find out. They are here at javaone - doing too much UI on the server side does seem like a real mistake for a tool like this. One of the nice things of things like this (and cappaccino) is that the server side becomes freed from worrying about what the client is doing/has open etc...
Re: Vaadin - GWT with a skinnable UI.
#25It looks good, but I don't see any demos that involve graphics. How usable is Vaadin for graphics?
Re: Vaadin - GWT with a skinnable UI.
#26Earlier quoted context omitted.
Yeah I am trying to find out. They are here at javaone - doing too much UI on the server side does seem like a real mistake for a tool like this. One of the nice things of things like this (and cappaccino) is that the server side becomes freed from worrying about what the client is doing/has open etc...
This is a matter of taste - benefits of the server-driven architecture are: no limits from the server, no GWT recompilation, direct access to server-side API and resources, better security, full Java virtual machine, full tooling and debugging support. Downsides are: more client-server traffic, more data to store in HttpSession.
Re: Vaadin - GWT with a skinnable UI.
#27Earlier quoted context omitted.
This is a matter of taste - benefits of the server-driven architecture are: no limits from the server, no GWT recompilation, direct access to server-side API and resources, better security, full Java virtual machine, full tooling and debugging support. Downsides are: more client-server traffic, more data to store in HttpSession.
I think the most impmortnat problem is trying to hide the netowrk under an inhenrelty leaky abstraction: http://www.erlang.org/pipermail/erlang-questions/2008-May/03...
Re: Vaadin - GWT with a skinnable UI.
#28Be aware that the paradigm of Vaadin (known as IT Mill Toolkit) is leaning toward server-side. GWT is 100% client-side (plus RPC). My guess is that Vaadin did a bit of UI rendering (prep-ing the HTML) on server-side then send it to client.
Re: Vaadin - GWT with a skinnable UI.
#29I think it make a lot of sense for a company to hire these services because some of these areas require a level of specialization that is very difficult to find. For example a traditional web designer needs to understand the tool paradigm to use it effectively.
On the other hand if you are small company you still can use the framework. (The only thing I am not convinced is about the server-side idea)
Re: Vaadin - GWT with a skinnable UI.
#30Earlier quoted context omitted.
I think the most impmortnat problem is trying to hide the netowrk under an inhenrelty leaky abstraction: http://www.erlang.org/pipermail/erlang-questions/2008-May/03...
yes that is what worries me - I like network stuff to be explicit.