On Oct 8, 8:36 am, sm <[email protected]> wrote: > Hi, > When the server sends the RPC call, the CPU Utilization is low. It > basically shoots up while rendering the page, while populating the > response data to the view and display. > I am not in a debug more. > > Any tips that I need to consider will be helpful.
It's well known that any DOM manipulation is costly (particularly in IE, by far the worst of all); so limit it to a minimum, and try to use "HTML fragments" instead where possible. I.e. use HTMLPanel instead of nesting numerous panels, and use the Cell widgets from GWT 2.1 instead of populating FlexTable or Grid (or use "bulk loaded" tables from the GWT-Incubator if you can't or don't want to move to GWT 2.1). -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. 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.
