We need to add Destroy(Delete) command inside Edit Popup of Kendo Grid.
So edit popup will have 3 buttons, (1)Update (2)Cancel (3)Delete
Please provide steps/details to achieve this if it is possible.
1 Answer, 1 is accepted
0
Alexander Valchev
Telerik team
answered on 29 Aug 2013, 12:34 PM
Hello Mis,
To achieve this you can:
Hook up to the edit event of the grid.
Append delete button to controls container
Hook up to the click event of the appended button
Find the uid of the edited record
Remove it from the DataSource through the remove method.