ComponentOne GridView for ASP.NET WebForms
In This Topic
    Working with GridView for ASP.NET Web Forms
    In This Topic

    GridView for ASP.NET Web Forms allows you to select, edit, delete, filter, and sort the items displayed in the table generated by the C1GridView component. GridView for ASP.NET Web Forms also supports paging, so data can be displayed across multiple pages, which are accessed by default or customized navigation buttons.

    The columns of a table created using the C1GridView component correspond to the fields in a data source. You can control which columns are displayed, the types of columns to display, and the appearance of the whole table.

    Using the AutoGenerateColumns property, you can generate columns automatically, manually, or both. Setting this property to True (default) creates a C1BoundField for each field in the data source. Setting this property to False allows you to specify the columns to display, which are added to the Columns collection.

    Note: Explicitly declared columns are rendered first, followed by automatically generated columns. Automatically generated columns are not added to the Columns collection.

    Class Hierarchy

    The following list summarizes the class relationships between the more important classes included in the GridView for ASP.NET Web Forms:

    See Also