Kendo Grid UI with custom function

513 Views Asked by At

I would like to have a delete button that uses kendo default design button design that uses my own function, may I know how could I do this?

This is the code for the button:

   columns.Command(command => { command.Destroy(); }).Width(30);
1

There are 1 best solutions below

0
On BEST ANSWER

Yes it is simple all you have to do is run a java script method when user click on delete button. Here is one way you can accomplish it.

    columns.Command(c => c.Custom("Delete").Click("deleteRecord"));

Javascript

   function deleteRecord(e) {
     var dataItem = this.dataItem($(e.currentTarget).closest("tr"));
     if (confirm('Are you sure you want to delete : ' + dataItem.name)) {
         var grid = $("#gridNAME").data("kendoGrid");
         grid.dataSource.remove(dataItem);
         grid.dataSource.sync();
         grid.refresh();
     }
 }