Use Checkbox to select and edit datagrid rows
I have developed an ASP.NET datagrid control, the datagrid control has multiple editable columns with on column containing a dropdown list.
I use the Item Command Edit, Update and Cancel buttins to make the grid editable, then save the changes to the dataset using the Update button. Finally I update the database with this updated dataset with a button placed outside the grid.
Now I want to implement the same datagrid but this time using a checkbox.
I should be able to select multiple rows at one time, edit the values in them, then finally update the database with the updated values in the dataset.
Please advice on moving forward with this one.
Thanks!
|