It's really going to depend on the amount of data you're trying to
display at once. You need to be a bit more specific as to what you are
doing, but the general rules of thumb are:
- lazy load UI elements, don't load everything at once
- if you need to display a lot of data, paginate it so you don't have
to pull a lot of information from the server.
- if have to load of widgets/display a lot of data, take a look at
IncrementalCommand to let the brower breath so the UI doesn't hang:
http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/client/IncrementalCommand.html
- don't create a lot of widgets if you don't have to, think about
using the DOM classes.
Hope that helps,
--
Arthur Kalmenson