Skip to main content

Posts

Showing posts with the label kendo ui grid filter

kendo ui grid filter, sort and paging in the server

kendo ui grid filter, sort and paging in the server Kendo UI Grid code-sample @( Html. Kendo ().Grid<Entities.Model.Proc_GetOrders_Result>() .Name( "GridOrders" ) .Columns(columns => {     columns.Bound(p => p.Order).Title( "Order Detail" ).Filterable( true );     columns.Bound(p => p.Customer).Title( "Customer Detail" ).Filterable( true );     columns.Bound(p => p.ID).Title( "" ).Filterable( false ).Title( "Actions" ).Sortable( false ); }) .ClientRowTemplate(Html.Partial( "_tabs" ).ToHtmlString())                                                                   ...