我在 Telerik mvc 网格上使用自定义工具栏按钮。
例如:
.ToolBar(toolBar =>
{
toolBar.Custom().Url("#").ButtonType(GridButtonType.Text).Text("send to web service").HtmlAttributes(new {@onclick = "SendReportConfirmationDialog()"});
})
但是这个控件没有 .hidden(true) 或 .enabled(false) 属性,所以我试图根据某些布尔值用 true 或 false 禁用这个按钮。
你知道这是否可能吗?