How to order and filter async

How to order and filter async

Inc33Inc33 Posts: 1Questions: 1Answers: 0

Hello, I'm working with a huge table, and i want to use it without AJAX at the moment, and being slow is not a huge deal, as i'm using a loading animation, so it would be fine, except that it's blocking the browser while it's doing it's filtering.

So the way i would resolve this issue normally, is that i would run the filtering in blocks with little break times async, so the rest of the browser could respond to the other actions, and would seem like it's running on another thread...

The problem is, that i'm not sure how can i wrap this solution around the current architect of the table. Is there any way to solve this issue?

PS: I'm aware that ajax would solve this issue, but i'm interested in a solution without ajax.

This discussion has been closed.