如何更改Kendo UI Grid上的文本销毁或删除命令操作?

时间:2012-09-24 17:49:35

标签: c# javascript jquery telerik kendo-ui

我正在使用KendoUI KendoGrid。我有一个带删除按钮或“销毁”操作的列。 Kendo会显示一个警告框,其中包含“您确定要删除此记录吗?”我需要这个文本更具体地说明我的情况。你如何自定义这个文本?

任何帮助都将不胜感激。

我添加列的代码是:

$reports.kendoGrid(
{
    dataSource: dataSource,
    pageable: {
        refresh: true,
        pageSizes: true
    },
    toolbar: [{ name: "create", text: "Add" }],
    columns:
    [
        { field: 'name', title: 'Report', sortable: true },
        { command: ["edit", "destroy"], title: " ", width: "180px", } 
    ],
    editable: "inline",
    selectable: true,

3 个答案:

答案 0 :(得分:25)

如果您使用的是用于ASP.NET MVC的Kendo UI,则可以使用DisplayDeleteConfirmation

        @(Html.Kendo().Grid<OrdersViewModel>()
              .Name("Orders")
              .HtmlAttributes(new {style = "height: 100%; border-width: 0;"})
              .Columns(c =>
                  {
                     c.Bound(p => p.Id)
                     .Width(50)
                  }
             .Editable(editable =>
                  {
                     editable.Mode(GridEditMode.InLine);
                     editable.DisplayDeleteConfirmation("Your Message here");
                  }))

答案 1 :(得分:10)

根据Kendo Grid documentation

editable.confirmation 布尔值|串

定义删除项目时将在确认框中使用的文本。

答案 2 :(得分:3)

替换

editable: "inline"

editable: {
    confirmation: "Your custom message",
    mode: "inline"
},