Hi
I have a anchor tag for the updating the row in the gridview. I have set the checkbox in the gridview. When the user checks the checkbox and click on update button the existing row should open in a pop up..
Right now the pop up is opening but not with the checked rows with the existing data. Please see the code for your reference:-
<a id="popup" onclick="div_show()" class="btn btn-success"><i class="fa fa-plus-circle"></i>Add new</a>
<a href="javascript:;" class="btn btn-primary" runat="server" onclick="div_show()" ><i
class="fa fa-refresh"></i>Update</a>
Also see the gridview code for your reference:-
<asp:GridView ID="grdCSRPageData" runat="server" Width="100%" border="1" Style=&qu ...
Go to the complete details ...