Kendo Grid,仅在添加新记录时显示命令按钮

时间:2016-01-07 16:40:28

标签: asp.net-mvc kendo-grid

我正在使用Kendo网格来显示数据。目前它在命令按钮(更新/取消或编辑/删除)方面表现良好。

问题:只有在我添加新记录时才需要显示命令按钮(更新/取消)。但是在加载和重新加载网格时需要隐藏按钮(编辑/删除)。

谢谢, 约翰

1 个答案:

答案 0 :(得分:0)

您可以通过将其隐藏在// when an android.app.dialog is shown // - again, this is getting all the users attention, so it gets the test attention // too. 事件中来实现这一目标:

dataBound

MVC:

$("#grid").kendoGrid({
   ...
   dataBound: function(e){ e.sender.tbody.find('.k-grid-edit,.k-grid-delete').hide() }
});