.ToolBar(toolbar =>
{
toolbar.Create().Text("Add New Task");=
toolbar.Custom().Name("PullItemsFromSubTeams").Url("").Text("Pull Items From Individual Assessments");
toolbar.Custom().Name("GroupItems").Url("").Text("Group Items");
toolbar.Custom().Name("Group").Url("").Text("Group Items");
toolbar.Custom().Name("cancel").Url("").Text("Cancel");
toolbar.Excel();
toolbar.Pdf();
toolbar.Template("<input type='checkbox' name = 'items[]' class = 'items' value='#= Id #'/>");
})
我需要使用自定义按钮和模板,因为我需要向Kendo工具栏添加输入,我的代码在上面。
答案 0 :(得分:0)
无法将网格工具栏模板与独立的自定义命令声明组合在一起。包括模板内的所有命令(按钮),或仅使用命令。