I am using MVC Complete v2013.2.918
I am working on supporting batch editing of a column (the percentage column - a decimal value) in the grid across pages when server side paging is used. I am modeling my modifications based on this example:
When I click the save button (which calls grid.dataSource.sync()), it is currently only sending data for the current page (which is expected and why I'm trying to use something like the linked example above). The issue now becomes: how can I modify the data sent from the client to the server to contain all the data across all pages instead of just the current page? I now have the data (thanks to the example above), but don't know how to add it to the data sent to the server.
Thanks in advance
I am working on supporting batch editing of a column (the percentage column - a decimal value) in the grid across pages when server side paging is used. I am modeling my modifications based on this example:
When I click the save button (which calls grid.dataSource.sync()), it is currently only sending data for the current page (which is expected and why I'm trying to use something like the linked example above). The issue now becomes: how can I modify the data sent from the client to the server to contain all the data across all pages instead of just the current page? I now have the data (thanks to the example above), but don't know how to add it to the data sent to the server.
Thanks in advance