Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1150
Persist Changes in igGrid when using remote paging, sorting
posted

What is the best way to persist user's changes inside the grid when I'm using remote paging/sorting for the grid ?

The problem right now is that when I make changes on the first page, go to the next page, go back, my changes are gone. I tried doing igGrid('commit') inside updatingDataDirty and editRowEnded event without any success.

$("#grid").on("iggridupdatingdatadirty", function (event, ui) {
      $("#grid").igGrid("commit");
      return false;
});

I thought I read somewhere in the API doing commit should solve this issue, I might be missing something here. Please Help.

Thanks,

Jeffrey