Example of Default Functionalities in ASP.NET MVC Data Grid Control
This sample demonstrates the default rendering of the Grid with minimum configuration.
Order ID | Customer Name | Order Date | Freight | Shipped Date | Ship Country |
---|---|---|---|---|---|
10001 | ALFKI | 5/15/1991 | $2.30 | 7/16/1996 | Denmark |
10002 | ANATR | 4/4/1990 | $3.30 | 9/11/1996 | Brazil |
10003 | ANTON | 11/30/1957 | $4.30 | 10/7/1996 | Germany |
10004 | BLONP | 10/22/1930 | $5.30 | 12/30/1996 | Austria |
10005 | BOLID | 2/18/1953 | $6.30 | 12/3/1997 | Switzerland |
10006 | ALFKI | 5/15/1991 | $4.60 | 7/16/1996 | Denmark |
10007 | ANATR | 4/4/1990 | $6.60 | 9/11/1996 | Brazil |
10008 | ANTON | 11/30/1957 | $8.60 | 10/7/1996 | Germany |
10009 | BLONP | 10/22/1930 | $10.60 | 12/30/1996 | Austria |
10010 | BOLID | 2/18/1953 | $12.60 | 12/3/1997 | Switzerland |
10011 | ALFKI | 5/15/1991 | $6.90 | 7/16/1996 | Denmark |
10012 | ANATR | 4/4/1990 | $9.90 | 9/11/1996 | Brazil |
The Grid is used to display and manipulate tabular data with configuration options to control the way the data is presented
and manipulated. It will pull the data from a data source, such as an IEnumerable, OData web services,
or DataManager
binding data fields to columns. Also, displaying a column header to identify the field with
support for grouped records.
In this demo, the Grid is populated with its minimum default settings.