Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须限制一些记录,为此我提出了一个条件
edit: function (e) { if(e.model.IsReadOnly) { $('#gridTiming').data("kendoGrid").closeCell(); } },
但是对于只读记录,它会闪烁。有没有其他方法可以限制记录。
我正在使用新的剑道版本“v2012.3.1114”。
这是您可以执行的操作:
$('#GridName tbody').on('click','tr',function(e){ var grid = $(this).closest('.k-grid'); var dataItem = grid.dataItem(this); if(dataItem.IsReadOnly){ e.stopPropagation(); } })