I am working on an application using the YUI DataTable and my result set is rather large (2,000+ rows) which takes YAHOO.lang.JSON.parse() about 5-6 seconds to parse.
During this time the browser becomes completely unusable.
Does anyone know of a way to grab a JSON response and parse it into JS with timeouts? Say... 100 rows every 50-100ms instead of parsing the whole thing at once and locking up the browser for the entire duration?