新しいレコードを作成するとき、または既存のレコードを編集するときにポップアップをロードする剣道 UI グリッドがあります。
新しいレコードを作成しているときに、更新ボタンのテキストを「保存」に変更する方法を見つけるのに苦労しています(現在「更新」と表示されていますが、正しくありません)。
ポップアップ ウィンドウのタイトルは変更できましたが、ボタンのテキストを変更するにはどうすればよいですか?
これはコードです:
$("#grid").kendoGrid({
dataSource: dataSource,
pageable: true,
sortable: true,
groupable: true,
height: resizeGrid(),
filterable: true,
toolbar: ["create"],
columns: [
{ field: "OfficeName", title: "Office Name" },
{ field: "SupportNo", title: "Phone No.", width: "100px" },
{ field: "SupportEmail", title: "Email Address", width: "130px" },
{ field: "SupportFax", title: "Fax No.", width: "100px" },
{ field: "SupportFtp", title: "Ftp Url", width: "150px" },
{ command: ["edit", "destroy"], title: "Actions", width: "160px" }],
editable: "popup",
edit: function (e) {
var editWindow = e.container.data("kendoWindow");
if (e.model.isNew()) {
e.container.data("kendoWindow").title('Add New Office');
$(".k-grid-update").text = "Save";
}
else {
e.container.data("kendoWindow").title('Edit Office');
}
}
});