14

KendoUIKendoGridを使用しています。削除ボタンまたは「破棄」アクションのある列があります。剣道は「このレコードを削除してもよろしいですか?」という警告ボックスを表示します。このテキストは、自分の状況により具体的にする必要があります。このテキストをどのようにカスタマイズしますか?

どんな助けでもいただければ幸いです。

列を追加するための私のコードは次のとおりです。

$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

Kendo UI for ASP.NET MVCを使用している場合は、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 に答える