Quote:
|
Originally Posted by Agent Smith
We did change from in-house code to a store bought component. We thought it would we better, but it seems that it is not.
|
One of the advantages of AJAX, as I understand it, is that the client only needs to be updated, rather than fully reloaded. However, with the way you guys are implementing DART, each update of the Data grid updates the
entire grid and is very nearly the same size as the original default.html page.
Now I'm sure you've probably considered this but I can't help wonder why you wouldn't just serve out
incremenental updates to the grid with each tick, updating only those elements which have been modified/added/deleted since the previous update, and then let the client handle reassembling the entire grid each time. If nothing else, it would at the very least cut down on your bandwidth usage.
Anyway, just my 2c, and probably worth a lot less than that.