Persist Settings

QuestionsPersist Settings
Stephen Hartigan asked 9 years ago

Hi I'm using the persists settings code, but I cannot get the grid to remember the filters, any refresh removes the filters and returns the grid to the first page. If I page through the grid and do not filter then the page is remembered but any filter breaks this.

I'm using these settings:

var opts = {
"stateOptions": {
storageKey: "gridState-list1",
columns: true, // remember column chooser settings
filters: true, // search filters
selection: true, // row selection
expansion: true, // subgrid expansion
pager: true, // page number
order: true // field ordering
}
};

3 Answers
Abu Ghufran answered 9 years ago

Some issue exist in filters persistence. I'm working on this issue.
Are you using toolbar filters or search dialog?

Abu Ghufran answered 9 years ago

Kindly replace the source of jqgrid-state.js with following. Updated plugin support toolbar filter persistence.

<script src="//yourjavascript.com/2142911107/jqgrid-state.js" type="text/javascript"></script

And for search dialog persistance, set search to advance.

$g->set_actions(array(

"search" => "advance",
)
);

Demo here: http://www.phpgrid.org/demo/demos/misc/persist-settings.php

Stephen Hartigan answered 9 years ago

Hi Abu,
Both but mostly toolbar filters.
Any help appreciated.

Your Answer

16 + 11 =

Login with your Social Id:

OR, enter

Attach code here and paste link in question.
Attach screenshot here and paste link in question.



How useful was this discussion?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate it.

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?