Back
@if (ViewBag.ShowDescription) {

Description

The Kendo UI grid is a powerful widget which allows you to visualize and edit data via its table representation. It provides a variety of options about how to present and perform operations over the underlying data, such as paging, sorting, filtering, grouping, editing, etc. To feed the grid with data, you can supply either local or remote data via the Kendo UI DataSource component, used as a mediator.


There are two possible ways to instantiate a Kendo UI grid:

  1. From an empty div element. In this case all the Grid settings are provided in the initialization script statement.
  2. From an existing HTML table element. In this case some of the Grid settings can be inferred from the table structure and elements HTML attributes.

In both cases the grid is registered as a jQuery plugin


In this demo you can see how you can easily configure the grid to display data and perform sorting, paging and grouping operations via its built-in settings.


Additional information about how to use the Kendo UI grid widget can be found in this section of the product documentation.

}