Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
65
Slow performance loading igGrid with large json data set
posted

Hello,

I have a data set of 25,000 rows, 12 columns and for the table to load onto the page it takes about 17 seconds or more on avg. I'm wondering if there is anyways to optimize this. I have a js file that sets a var = to the json data(as in many of the examples) and I add the features sorting, resizing, column moving, and filtering(which also are very slow). I also autoGenerate the columns. my Grid code looks like this:

$("#grid").igGrid({
dataSource: data, //JSON Array defined above
autoGenerateColumns: true,
features: [

{

name: "Sorting",
type: "local"
},
{
name: "Resizing"
},
{
name: "ColumnMoving",
columnMovingDialogContainment: "window"
},
{
name: "Filtering",
type: "local",
mode: "simple"//,
//filterDialogContainment: "window"
}

]
});

Please let me know if there is any way I can make this faster.

Thanks,

Kelsey Skaarva