or

@(Html.Kendo().Grid(Model) .Name("Grid").Sortable().Selectable().Scrollable().Filterable().Groupable() .Resizable(c => c.Columns(true)) .Columns(columns => { columns.AutoGenerate(true); columns.Command(c => c.Edit()); }) .Pageable(pager => pager .PageSizes(new int[] { 15, 30, 50, 100 }) ) .ToolBar(commands => { commands.Create(); commands.Custom() .Text("Clear Filters") .Action("Index", "Jobs"); }) .DataSource(dataSource => dataSource .Ajax() .Model(m => m.Id(v => v.JOB_TITLE_ID)) .PageSize(15) .Read(read => read.Url("localhost:8082/TrainingService.svc/ReadJOB_TITLEs")) .Update(update => update.Action("Edit", "Jobs")) .Create(create => create.Action("Create", "Jobs")) ) )