Reputation: 19469
In my website, I have a gridview which has datasource dynamically bound from database table.
Now I want that when a user clicks in a cell of the gridview it becomes editable and he can edit the cell values and update the database accordingly.
I don't wish to use the in-built edit, delete and update buttons of gridview. How can I do that?
Upvotes: 2
Views: 5177
Reputation: 23634
onclick
handler for this div/spanUpvotes: 0
Reputation: 44605
I guess if you catch the client side click on the grid you can them force a post back in which you set the selected row to edit mode. Is this what you want to do?
Upvotes: 0