GWT layout panels vs. CSS layout
Posted
by David
on Stack Overflow
See other posts from Stack Overflow
or by David
Published on 2010-04-14T15:07:37Z
Indexed on
2010/04/14
15:43 UTC
Read the original article
Hit count: 1078
I read an article entitled "Tags First GWT", in which the writer suggests using GWT for event-handling, and CSS for layout. I just don't know whether the benefit of GWT's cross-browser compatibility goodness outweighs the flexibility offered by pure CSS layout.
GWT
GWT 2.0 has some snazzy layout panels, but to get them to resize properly you really need to build the entire panel containment tree from the root panel down. It's an all-or-nothing thing, it seems.
CSS
You can use CSS to layout an application too, and I'm inclined to do just that, if only to justify my purchase of several books touting the 'semantic markup' gospel. The downside might be cross-browser incompatibilities, the prevalence of which I have yet to determine.
Which way to go?
What is your opinion? Are cross-browser problems bad enough, and prevalent enough, to warrant ditching my CSS books, and building with GWT layout panels?
© Stack Overflow or respective owner