popup - How to customize a Destroy() Action in the Kendo UI Grid? -


can tell me how customize css, message , text in "yes" / "no" buttons in popup launched destroy() method in kendo ui grid?

my code looks this:

@(html.kendo().grid<activitymodel>(model.activities)   .name("grid")   .columns( columns => {     columns.bound( c => c.name ).width(50);     columns.command(command => command.destroy()).width(90); }) 

thanks time!

currently can customize text of confirmation of deletion of row. if want customize message better option use custom command button deletes row , can setup pop design per requirement. please refer below link custom command in kendo grid.

http://demos.telerik.com/aspnet-mvc/grid/custom-command


Comments