Is it possible to do in-line row edit (double click on a row and edit it) in Grid.MVC. The documentation is here
Asked
Active
Viewed 563 times
2
-
what you did, just post here – RAUSHAN KUMAR Jul 18 '17 at 04:56
-
Currently, I have an edit button on each row which would then open a pop-up to edit the records. Now I need to do the editing inline, meaning when I double click on the row, I should be able to edit the row without using popup. – Ponni Jul 18 '17 at 07:26
-
yes you can, just replace the row elements(
) to the input elements and change edit button to save button using javascript, after clicking save using ajax save the inputted data for that particularrow based on some unique id and in success response again replace the input elements to the row elements( ) – RAUSHAN KUMAR Jul 18 '17 at 08:27 -
any working example? because I have tried it and it doesn't work. – Ponni Jul 18 '17 at 08:50
-
post your html here – RAUSHAN KUMAR Jul 18 '17 at 09:41