Reputation: 15
I am using Kendo MVVM. I have a grid with basic functionalities like Add, Edit Delete. For delete, I use the below code. I get a javascript confirmation message when I click on delete. Instead, I need a Kendo Confirmation message with customized text. Can someone help me with this?
My code for delete.
,{
command: [{
name: 'destroy',
text: ''
}]
}
Upvotes: 0
Views: 1111
Reputation: 27508
You can find information on this functionality in the Kendo UI for JQuery documentation page Customize Confirmation Window
To achieve this behavior, use the Kendo UI templates, the Window, and the remove dataSource method of Grid.
Upvotes: 1