嗨有没有办法在Kendo Grid中编辑时只显示几列?
我正在尝试在弹出模式下更新网格值。当我点击编辑按钮时,它会在弹出窗口中显示所有列。但是我想在弹出窗口中只显示名称和部门等选定的列。
答案 0 :(得分:1)
为此,您需要定义自定义模板以进行编辑。请执行以下更改:
在剑道网格中:
editable: {
mode: "popup",
template: kendo.template($("#editTemplate").html())
}
在此处定义您的editTemplate,如:
<script type="text/x-kendo-template" id="editTemplate">
<div class="k-edit-form-container">
<table style="margin:0 auto;">
<tr>
<td>
<input type="text" class="k-input k-textbox" **data-bind="value:your_column_to_bind"**/>
</td>
</tr>
</table>
</div>
</script>