我想只禁用剑道可编辑网格的第一个单元格的编辑,我正在做类似下面的事情。实际上我正在尝试从剑道网格的第一个单元格中删除一个日期选择器,因为它不需要在那里。所以我在下面使用,这段代码从网格中删除了 datepicker,但它仍然显示一个文本框。我应该能够完全删除它。
function onGridEditing(e) {
var gridbody = $("#EditableGrid").data("kendoGrid");
var gridData = gridbody.dataSource.view();
var currentUid = gridData[0].uid;
var Date = gridData[0].Date;
var currenRow = gridbody.table.find("tr[data-uid='" + currentUid + "']");
//var firstCell = currenRow.find('td:not(:empty):first');
//firstCell.find('.k-select').remove();
//alert(firstCell.val());
currenRow.find('.k-select').remove();// this removes the datepicker but it is still showing textbox when user click on the row for edit.
currenRow.find(".editDate").remove();
ALso I tried to apply a css over there so that it hide datepicker but not working
//$("#EditableGrid").data("kendoGrid")._data[0].addClass('hideMe');
}
<style>
.hideMe {
/*visibility: hidden;*/
border: none !important;
background-color: none !important;
}
</style>