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

Devtest1Devtest1 Posts: 3Questions: 1Answers: 0
edited February 2020 in Free community support

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.

Answers

  • colincolin Posts: 15,237Questions: 1Answers: 2,598

    Are you using or experiemented with Editor? That has functionality similar to what you describe.

    Colin

  • Devtest1Devtest1 Posts: 3Questions: 1Answers: 0

    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

  • colincolin Posts: 15,237Questions: 1Answers: 2,598

    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

  • Devtest1Devtest1 Posts: 3Questions: 1Answers: 0

    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

  • colincolin Posts: 15,237Questions: 1Answers: 2,598

    One option perhaps would be queueing the edits, see this blog post.

    Colin

This discussion has been closed.