私は剣道のグリッドを編集ボタンで持っていますが、下のコードではvalが必要なので、どのようにIDを得ることができますか?編集するにはどのように編集する機能を追加できますか?剣道はどのように編集することができますか?
$("#turbingrid").kendoGrid({
// debugger;
dataSource: dataSource,
scrollable: false,
toolbar: ["create"],
columns: [
{ field: 'DeviceIP', title: 'DeviceIP', width: '100px', id: 'DeviceIP' },
{ field: 'Producer', title: 'Producer', width: '80px', },//editor: ProductNameDropDownEditor,
{ field: 'Model', title: 'Model', width: '220px' },
{ field: 'DeviceType', title: 'DeviceType', width: '100px', editor: deviceTypesList },
{ field: 'Description', title: 'Description', width: '220px' },
{ field: 'Username', title: 'Username', width: '120px' },
{ field: 'Password', title: 'Password', width: '100px' },
{ field: 'PublicIP', title: 'PublicIP', width: '120px' },
{ field: 'TurbineId', title: 'TurbineId', width: '120px', hidden: true },
{ field: 'device_id', title: 'device_id', width: '120px', hidden: true },
{ field: 'ModelProducer', title: 'Producer/Model', hidden: true, editor: modelProducer },
{ command: ["edit"], title: " " }
],
// {
// command: [
//{
// name: "Edit",
// click: function (e) {
// temp = $(e.target).closest("tr"); //get the row
// }
//}
// ]
// }
editable: "popup",
edit:
function (e) {
e.container.find("label[for='device_id']").parent().hide();
e.container.find("div[data-container-for='device_id']").hide();
}
});
「編集する機能を追加するにはどうすればいいですか」というのは、ボタンをクリックしたとき、または機能を追加したときの意味です。 – Adriani6
@ Adriani6 yeasデモのおかげで – mrslt