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
You can try using WebWorker: https://developer.mozilla.org/en/DOM/Worker
Thus worker are executed in parallel of the main thread, you cannot exactly achieve multi-threading using workers: you cannot modify the UI from a worker.
You can maybe create your grid as a string in a worker and when the worker finish, append it where you want.