我的屏幕是訪問控制,所以我有一個先前的記錄在我的數據庫(SQL Server)與訪問時間,這些時間被稱爲步驟。阻止列版本
在這個屏幕我有問題,有一個表格登記輪班(天將被允許登錄到系統)。
在這種形式中,我有字段:我在哪裏設置名稱,描述和步驟,設置後點擊添加按鈕,將數據發送到網格側。
在此網格中,我添加了該步驟的名稱,星期幾以及要刪除的按鈕。
我的問題是這樣的,我的複選框應該是可編輯的,但我的步驟的名稱不是。
跟隨我的網格códiogo:
$("#myGrid").kendoGrid({
columns: [
{ field: "Etapa", title: dialetos.lblEtapa, attributes: { style: "text-align: left" }, width: 130, visible: true },
{ field: "Domingo", title: dialetos.lblDomingo, template: "<input id='checkbox' #= Domingo ? checked='checked' : '' # type='checkbox' class='checkbox' ' />", attributes: { style: "text-align: left" }, width: 85 },
{ field: "Segunda", title: dialetos.lblSegunda, template: "<input id='checkbox' #= Segunda ? checked='checked' : '' # type='checkbox' class='checkbox' ' />", attributes: { style: "text-align: left" }, width: 80 },
{ field: "Terca", title: dialetos.lblTerca, template: "<input id='checkbox' #= Terca ? checked='checked' : '' # type='checkbox' class='checkbox' ' />", attributes: { style: "text-align: left" }, width: 75 },
{ field: "Quarta", title: dialetos.lblQuarta, template: "<input id='checkbox' #= Quarta ? checked='checked' : '' # type='checkbox' class='checkbox' ' />", attributes: { style: "text-align: left" }, width: 80 },
{ field: "Quinta", title: dialetos.lblQuinta, template: "<input id='checkbox' #= Quinta ? checked='checked' : '' # type='checkbox' class='checkbox' ' />", attributes: { style: "text-align: left" }, width: 80 },
{ field: "Sexta", title: dialetos.lblSexta, template: "<input id='checkbox' #= Sexta ? checked='checked' : '' # type='checkbox' class='checkbox' ' />", attributes: { style: "text-align: left" }, width: 75 },
{ field: "Sabado", title: dialetos.lblSabado, template: "<input id='checkbox' #= Sabado ? checked='checked' : '' # type='checkbox' class='checkbox' ' />", attributes: { style: "text-align: left" }, width: 80 },
{ title: "Remover", template: "<span class='k-button' id='btnRemover' onClick='RemoveRowSelecionada()' >Remover</span> ", attributes: { style: "text-align: left" }, width: 85 }
],
groupable: false,
sortable: true,
editable: true,
filterable: true,
pageable: true,
selectable: "row",
height: 180,
dataSource: vmObjeto.dias,
batch: true,
change: function (e) {
},
}).data("kendoGrid");
謝謝!
謝謝回答我拉斯,這兩個例子部分解決了我的問題。我可以編輯但不保存在數據庫中。 如何阻止這些企圖版? – Isabela
@Isabela我不明白這個問題 - 你想做什麼,什麼不工作?嘗試更詳細地解釋(編輯問題)。還要添加你的數據源定義。 –