I have a grid (kendo ui MVC) today it has 35163 lines, and I need to create a button to export the contents of the grid to CSV.
I thought of doing something like that, the moment I load the information to feed the grid, generate a JSON object and store that object in sessionStorage, then when generating the CSV, just take that data and send it to controller, not needing redo another query in the database.
If you do as I described above, can it hurt performance? Anyone have any better ideas?