Kendo UI 隱藏Grid 彈出式編輯中的某些欄位
系統環境:Windows 10、Visual Studio 2017
內容摘要:
使用Telerik 的Kendo UI JQuery 來做資料的CRUD。有時候希望某些欄位不要在在彈出式編輯畫面 (Popup Editor) 上顯示出來。
解決辦法:
可以在KendoGrid 設定當編輯事件觸發時,把相關欄位隱藏起來
$("#grid").kendoGrid({
edit: function(e) {
e.container.find("input:first").hide();
}
});
相關連結:
https://stackoverflow.com/questions/16415604/kendoui-grid-edit-popup-how-to-hide-field