How to add a template to a Kendo grid toolbar
问题 I am trying to add a custom template to Kendo MVC grid. My template should contain 2 things Create button to add new record to the grid Autocomplete box to filter the data in the grid. I am trying the following code : .ToolBar(toolbar => { toolbar.Template(@<text> <div class="toolbar"> <label class="category-label" for="category">Filter by name:</label> @(Html.Kendo().AutoComplete() .Name("employees") .DataTextField("empName") .Filter("contains") .MinLength(3) .Events(e => e.Change(