shajeeck
shajeeck

Reputation: 121

Refresh enhaced grid preserving client side filter

How can we refresh enhanced grid after a filter in applied, preserving the filter query?? doing grid.setFilter() clears the filter. Is there any way to access all active filters in grid to give like grid.setFilter(activefilters)?????

Upvotes: 1

Views: 462

Answers (1)

shajeeck
shajeeck

Reputation: 121

hmm..... i got the answer myself,

its grid.getFilter() which gives the current filters

grid.setFilter(grid.getFilter());

refreshes the grid with current filters..

that simple it was :)

Upvotes: 2

Related Questions