This example demonstrates how to use a custom toolbar template in Telerik Grid for ASP.NET MVC. The template can be declared through the ToolBar's Template method. In this particular example the template is used as a container for a filtering ComboBox.

To define a custom template use the following code

<% Html.Telerik().Grid(Model)
        .Name("Grid")
        .ToolBar(toolBar => toolBar.Template(() =>
        { 
            %>
            <label>Show orders for customer:</label>
            <%= Html.Telerik().ComboBox()
                    .Name("Customers")                                               
            %>
            <% 
        }))
        .Render();
%>