How to inline edit the data in the row and update the same in a datatable
How to inline edit the data in the row and update the same in a datatable
Devtest1
Posts: 3Questions: 1Answers: 0
I want to edit the data in the table with inline editing.
I want to do the following flow
1. Clicking the edit button, selected row should be enable to edit along with Update and cancel button should show.
2. Clicking update button, updates the change.
Doing this on MVC 5.
This discussion has been closed.
Answers
Are you using or experiemented with Editor? That has functionality similar to what you describe.
Colin
Hi Colin,
I'm using Editor.. already gone through the functionality you were referred.. i need to do inline editing. Every row has one edit button if a user clicks the button the relative data columns turn to editable and edit button turns into "Save" | "
Cancel" button.
Parthiban
With inline editing, every cell edit is unique - so as soon as it's been edited, that data will be sent back to the server. If you want to edit multiple entries at one, you'll need to do something like the bubble edit that I linked to before.
Colin
I need to implement the same as you specified in your first statement. I'm trying to figure it out, How?. Because there is a option for bubble edit but not for inline edit.
-Parthiban
One option perhaps would be queueing the edits, see this blog post.
Colin