RadGrid for ASP.NET

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


Displays a Checkbox control for each item in the column. This allows you to select grid rows client-side automatically when you change the status of the checkbox to checked.

Object Model


 

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

Syntax

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

Example

            <rad:GridClientSelectColumn UniqueName="CheckboxSelectColumn" HeaderText="CheckboxSelect column <br />" />
                

Remarks

If you choose AllowMultiRowSelection = true for the grid, a checkbox will be displayed in the column header to toggle the checked/selected stated of the rows simultaneously (according to the state of that checkbox in the header).

To enable this feature you need to turn on the client selection of the grid (ClientSettings -> Selecting -> AllowRowSelect = true).

Inheritance Hierarchy

System.Object
   Telerik.WebControls.GridColumn
      Telerik.WebControls.GridButtonColumn
         Telerik.WebControls.GridClientSelectColumn

Requirements

Namespace: Telerik.WebControls

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

Assembly: RadGrid (in RadGrid.dll)

See Also