有没有办法以编程方式将许多项目添加到Telerik MVC Grid的工具栏?
我通常会手动添加这样的项目,但有一组我想添加到工具栏的项目,并想知道是否有办法实现这一点?
.ToolBar(commands =>
{
commands.Custom().HtmlAttributes(new { id = "btn-addproduct" }).Text("Add Product").HtmlAttributes(new { onclick = "addQuotationLine(" + Model.Id + ");return false;" });
})