-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jqGridImport & jqGridExport working synergy #1061
Comments
Hello, I apologize for delay - for some reason I missed your request. Try to export with Regards |
Hello, Could you please post your full jqGrid setup, so that we can see what is happen. |
https://jsfiddle.net/nambell/gq3j1aL7 Here it is. Btw already tried SaveState & LoadState - looks pretty much as what I'm looking for, but didn't figure out yet how to load and save only colums visability, without other prefs and data in colums. |
Look at the options of the methods there is a way not to save or load the data |
Hello. is there any valid method to save current colums visability for current user in JqGrid? I mean when it was version 4.6 - I made it with :
$("#gridframe").jqGrid('jqGridImport',{imptype:"jsonstring", impstring:window.localStorage.getItem("%userid%-gridframe")});
in the beggining, before JqGrid is builded and then created button, which saves all prefs of current grid in local storage:
window.localStorage.setItem("%userid%-gridframe",$("#gridframe").jqGrid('jqGridExport',{exptype:'jsonstring'}));
But with the latest version it said that jqGridImport is not a function and when I changed it to:
$.jgrid.jqGridImport( "gridframe", {imptype:"jsonstring", impstring : window.localStorage.getItem("%userid%-gridframe")});
It started saying that json array is not valid, but all was okay when it was old version.
What I'm doing wrong? I already tried to figure out about new syntax, but didn't get any correct results in my researches....
The text was updated successfully, but these errors were encountered: