On 2/10/2013 8:56 AM, Alp Yilancioglu wrote: > Hi, > Using GWT; > Client side multitheading is possible with websworkers > which is not supported in IE9 but supported ie10 ( so webworkers for > me is early to be used ) > > without using webworkers, is there a way that i could make a > workaround solution for my case; > > Recieveing XML data from comet callbacks, and parsing them at client side, > the thing depending on the size and complexity of the nodes and their > child nodes searching and process the data ( Loops ) lock the browser > some times timeouts accours. > > how can i prevent those locks in browser
Assuming your client-side processing is optimized as possible (i.e. you're using the browser to parse the XML). Are you converting the XML to HTML? If so, perform the conversion on the server and send the generated HTML to the client. Manipulate the DOM on the client. GWT excels at that work, as it is designed to reduce DOM-related memory leaks. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
