Unplanned
Last Updated: 27 Nov 2024 13:15 by Josh
Josh
Created on: 27 Nov 2024 13:15
Category: Grid
Type: Feature Request
1
Add UpdateTemplate and CancelTemplate options for the Edit command

Is it possible to implement template options for the "update" and "cancel" column commands of the Grid?

For example:

$("#grid").kendoGrid({
  columns: [{ 
    command: [{
        name: "edit",
        template: {
            update: "<button class='customUpdate'>Save</button>",
            cancel: "<button class='customCancel'>Cancel</button>",
          }
      }]
   }],
  ...
});

0 comments