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
145
Refresh grid data without filters reset
posted

Hi,

I'm currently using the igGrid and I want to reshresh grid data and keep user's selected filters.

Is there any way to do that ?

I know how to apply filters to the grid but not how to get current filters.

I tried to handle dataFiltered event but didn't found a way to retrieve applied filter

Here the code I used to refresh grid data

ds_status = new $.ig.DataSource({
type: "json",
primaryKey: "PresentationID",
dataSource: msg.d
});

//Bind status grid
$("#grid-status").igGrid({ dataSource: ds_status });


Thanks