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,
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");
}))
交換
editable: "inline"
と
editable: {
confirmation: "Your custom message",
mode: "inline"
},