Hi Parag, I would use GWT for many things, but in this case, I would probably decide between
- Using pure JavaScript (should usually be enough to do this.) - Using jQuery selectors, if it gets more complex. - Or write a quick standalone Java App which parses the HTML (using htmlunit, or NekoHTML directly), walk the DOM, and write it to a file. (I don't know, if you have to integrate the solution directly in a browser?) Or do you plan on using some special feature of GWT for your tool? Chris On Apr 18, 4:16 pm, myapplicationquestions <[email protected]> wrote: > Hi All, > > I have a requirement where i get a huge html report from a third party > application (@50,000 records), i need to put a filter on it so i show > only some records matching a certain criteria. > > I am thinking of using GWT for this, where i will go through DOM and > parse each row, if a particular record does not match my criteria i > delete the TR using GWT. > > Is this the correct approach? Is GWT fast enough for this? > > Thanks, > Parag > > -- > 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 > athttp://groups.google.com/group/google-web-toolkit?hl=en. -- 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.
