Just keep in mind that development mode is really a lot slower than the 
final compiled javascript code (development mode in Firefox seems to be the 
fastest, Safari is ok, Chrome feels slow). 

How do you generate your views?

I am not quite sure but I think something like:

FlowPanel wrapper = new FlowPanel()
for(Person p : persons) {
  wrapper.add(new PersonView(person));
}
containerView.add(wrapper)

could have a better performance than:

for(Person p : persons) {
  containerView.add(new PersonView(person));
}

because the first example fills the wrapper while it is not attached to the 
DOM yet.

-- J.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/KZagJXnFXM0J.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to