How to add a custom button in Telerik MVC Grid Toolbar like “Add New Record” Button
.ToolBar(commands => { commands.Insert().ButtonType( GridButtonType .Text); commands.Custom().Name( "mybtn" ).Text( "This Is Title" ).ButtonType( GridButtonType .Text).Action( "myAction" , "myController" ).Ajax( true ); })