So I have a large JSON object i\'m returning from the server, then building a datatable from it and displaying it on the form. This usually takes a few seconds.. so I was th
JavaScript is single threaded. You'll have to break your work up into pieces and call them in sequence using "setTimeout" to allow the GUI to update during processing (in between your calls) but even then the browser will still seem somewhat unresponsive.