I am developing an application using MVC and I am using JqGrid to display the data.
The JqGrid is inside Views\Shared folder as partial page.
This grid is loaded as partial page in another View (Home.cshtml).
Multiselect option of the grid is set to True so that the first column is shown as Checkbox for all rows.
This Grid is loaded/refreshed in intervals of 2 minutes using Javascript SetInterval.
When I select the checkboxes of the Grid row, the checked state of checkbox is not retained after Grid is refreshed in the intervals of 2 minutes.
Kindly help me with the solution to this problem, the previous checked state of checkbox should be retained after Grid refresh. Thanks.