I'm using MVC razor control @(Html.Kendo().ListView<M.Models.HomeModel>() .Name("listView") .TagName("div") .ClientTemplateId("listingtemplate") .Events(e => e.DataBound("listviewDataBound")) .DataSource(dataSource => { dataSource.Read(read => read.Action("M_Read", "Home").Data("queryParameters")); dataSource.PageSize(12); dataSource.ServerOperation(false); }) .Pageable() )
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)