Skip to main content

Posts

Showing posts with the label Kendo ui grid record length count

Kendo ui grid record length count

MVC 4 Controller code sample  //Use api Controller // GET api/use/ public string Get(int id) {     return "value"; }   Kendo MVC4 Grid code sample @( Html. Kendo().Grid <PCX.Models.UsageByPricing>()     .Name( "kndoGridId" )     .Sortable()     .Pageable()     .Scrollable()     .Columns(columns =>     {         columns.Bound(e => e.Product).Title( "Product" );         columns.Bound(e => e.UsageIncluded).Title( "Usage Included" );         columns.Bound(e => e.UsageIncludedTypeID).Title( "Usage Included Type" ).ClientTemplate( "#: getUsageIncludedType(UsageIncludedTypeID) #" );         columns.Bound(e => e.NetworkID).Title( "Network" ).ClientTemplate( "#: getNetworkName(Netw...