Hello,
I want to persist and load the changes in layout that a user makes in the ignite Grid. The layout changes may include the reordering of the Columns, hiding/unhiding of the columns etc.
Does the ignite grid provides such a functionality built-in? If not how can we implement this in code?
Regards,
Arfan Baig
Hello Arfan,
There is no functionality out of the box to save the grid state. For Hiding, Resizing, Column Moving you can save the column collection of the grid (you can get the column collection using the following code: $(".selector").igGrid("option", "columns");) to the local storage and later when user navigates back to the page initialize the igGrid with that column collection.Persisting the state of the grid features is done on a case by case basis.
You can also see the following forum posts:
http://es.infragistics.com/community/forums/p/72934/370028.aspx#370028
http://es.infragistics.com/community/forums/p/76281/385321.aspx#385321
http://es.infragistics.com/community/forums/p/69422/351597.aspx#351597
Hope this helps,Martin PavlovInfragistics, Inc.
Hi,
I have the same question but for the Pivot Grid: Is it possible to save the column layout for the pivot grid ?