How to get started with Telerik's Data Grid
Learn how Telerik's Kendo UI DataGrid can make working with data in your WiseJ.NET web applications much easier.
Data Grid Basics
public partial class KendoDataGridFundamentals : Wisej.Web.UserControl
{
...
private IEnumerable<Sale> sales =
Enumerable.Range(1, 100).Select(x => new Sale
{
Placed = DateTime.Now.AddDays(x),
CustomerName = "Customer " + x,
Id = x,
Value = x * 20
});
private class Sale
{
public int Id { get; set; }
public DateTime Placed { get; set; }
public string CustomerName { get; set; }
public decimal Value { get; set; }
}
}
Make it sortable

Enable Paging

Group the data

Format the grid's fields


More ways to configure the control
Create a type
Specify options in the designer


Filter the data



In Summary
Last updated
Was this helpful?

