Hi, I have this Grid which uses Custom Binding for manual skip and take on the server.
After successful Read of data, my problem now is the Search and Filtering feature is now working.
@(Html.Kendo().Grid<MyWebApp.Web.Models.ViewModel>()
.Name("grid")
.EnableCustomBinding(true)
.Columns(columns =>
{
columns.Bound(p => p.Sorting).Width(100).Filterable(false);
columns.Bound(p => p.Code).Width(200).Filterable(true);
columns.Bound(p => p.Description).Filterable(true);
})
.ToolBar(toolbar =>
{
toolbar.Search();
})
.Filterable()
.Pageable()
.Sortable()
.Scrollable(scr => scr.Height(550))
.DataSource(dataSource => dataSource
.Ajax()
.Events(events => events.Error("error_handler"))
.Model(model => model.Id(p => p.Id))
.Read("gridDataSource", "Home")
)
)