14

我正在使用 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,
4

3 回答 3

26

如果你使用的是 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");
                  }))
于 2013-03-12T19:29:53.097 回答
10

根据剑道网格文档

editable.confirmation布尔值 | 细绳

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

于 2012-09-24T17:56:18.277 回答
3

代替

editable: "inline"

editable: {
    confirmation: "Your custom message",
    mode: "inline"
},
于 2013-06-19T05:52:46.840 回答