Hello,
currently i am using events so auto save the gridOptions into local storage:
.Events(events => events.DataBound("gridStateChanged")
.ColumnShow("gridStateChanged")
.ColumnHide("gridStateChanged")
.ColumnReorder("gridStateChanged")
.ColumnResize("gridStateChanged"))
The grid state is restored automatically when the document gets ready.
So is this approach correct or is there a smarter way than to wire all that events? Is there a better way to implement an autosave / restore mechanism?
Thanks in advance
Holger