How do I create an edit dialog box using jquery? Let say I have a html table full of data, and if I click on a button on a row, it will display the data on that row into a jquery dialog box.
I am able to create a dialog box to add data and to remove data, but to edit data and populate the textboxes on the jquery, I am really out of idea.
You can have a edit button in the last cell of each row
On click of this button get all the cells data of this row and pass it to dialog box.
The dialog box will also have a
Savebutton on click of which it will update the cells of the current row with edited data.