Right now, my table of about 200 records takes so long that it's blocking the UI. After profiling the JavaScript, it seems it spends most of the time changing the innerHTML. I'm guessing that it does this in a loop so it'd be rather easy to either divide it into separate chunks so that it can execute via setTimeout, allowing the UI thread to update from time to time.
↧