RadGrid for ASP.NET

RadGrid Send comments on this topic.
RadGrid Class
See Also  Members  
Telerik.WebControls Namespace : RadGrid Class


RadGrid control class.

Object Model




























 

Namespace: Telerik.WebControls
Assembly: RadGrid (in RadGrid.dll)

Syntax

Visual Basic (Declaration) 
Public Class RadGrid 
   Inherits GridBaseDataList
Visual Basic (Usage)Copy Code
Dim instance As RadGrid
C# 
public class RadGrid : GridBaseDataList 

Remarks

Set properties of RadGrid as default for the corresponding properties of grid's table views . The best approach to bind RadGrid is to handle its RadGrid.NeedDataSource event and set the DataSource property there. This way RadGrid will handle automatically operations like paging, sorting, grouping, etc. The main table-view can be accessed through RadGrid.MasterTableView property. The group panel and its items can be accessed using GroupPanel property. Note that the group items can be modified only through the GridTableView.GroupByExpressions properties of each GridTableView. Hierarchical grid structure can be implemented adding GridTableView objects to DetailTables and handling DetailTableDataBind event, where you should set the DataSource of each bound detail table filtered according to the ParentItem property key values. The Columns of RadGrid property is a reference to the columns of the MasterTableView and is present in RadGrid for compatibility with the DataGrid server control.

Inheritance Hierarchy

System.Object
   System.Web.UI.Control
      System.Web.UI.WebControls.WebControl
         System.Web.UI.WebControls.BaseDataBoundControl
            System.Web.UI.WebControls.DataBoundControl
               System.Web.UI.WebControls.CompositeDataBoundControl
                  Telerik.RadGridUtils.RadControl
                     Telerik.RadGridUtils.RadSkinnableControl
                        Telerik.RadGridUtils.RadAJAXControl
                           Telerik.WebControls.GridBaseDataList
                              Telerik.WebControls.RadGrid

Requirements

Namespace: Telerik.WebControls

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

Assembly: RadGrid (in RadGrid.dll)

See Also