|
|
|
|
|
by bigiain
5302 days ago
|
|
Nice link, thanks. It doesn't address the problem we bumped into though. When a page needs a significant amount of content updated, sending that as structured JSON to a low powered Android device (or sometimes even an iPhone2 or a non S 3G) and then parsing that JSON and updatng the DOM was _way_ slower than sending back HTML and just replacing an elements innerHtml. For small tasks (like the personalisation {'name':'John'} example) we could make the JSON approach work, but updating a ~25row 4column list? Not on the cheap Android devices... |
|
Are you perhaps constructing the nodes on the document, instead of doing them off the tree and then inserting/replacing them all at once?