mleibman / SlickGrid

A lightning fast JavaScript grid/spreadsheet
http://wiki.github.com/mleibman/SlickGrid
MIT License
6.81k stars 1.98k forks source link

Please Help. Data for dataview in slickgrid #1111

Open SjSorc opened 8 years ago

SjSorc commented 8 years ago

I was wondering if we can use an array of arrays as dataview instead of array of objects. we have around 1 million records and the keys are repeated again in each object and takes up huge amount of memory. Please help.

paulbors commented 8 years ago

At which point do you realize that 1 million records is simply too much and no UI out there should ever handle that many.

I recommend you go over your design as you have a basic flow in UI. You really don't expect a human being to look over 1 million records and do something useful with it, do you?

6pac commented 8 years ago

check out the remote provider. you can use ajax to just return the section the user is interested in.