web-dev-qa-db-ja.com

剣道UIグリッドのテキストを変更するには、コマンドアクションを破棄または削除しますか?

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,
13
Rodney

剣道グリッドのドキュメント によると:

editable.confirmationブール値|ストリング

アイテムを削除するときに確認ボックスで使用されるテキストを定義します。

10
MrOBrian

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");
                  }))
25
Vlad Bezden

交換

editable: "inline"

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