RadGrid for ASP.NET

RadGrid Send comments on this topic.
ColumnCreated Event
See Also 
Telerik.WebControls Namespace > RadGrid Class : ColumnCreated Event


This event is fired after the creation of auto-generated columns.   

Event Data

The event handler receives an argument of type GridColumnCreatedEventArgs containing data related to this event. The following GridColumnCreatedEventArgs properties provide information specific to this event.

PropertyDescription
Column  
OwnerTableView  
 

 

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

Syntax

Visual Basic (Declaration) 
Public Event ColumnCreated() As GridColumnCreatedEventHandler
Visual Basic (Usage)Copy Code
Dim instance As RadGrid
Dim handler As GridColumnCreatedEventHandler
 
AddHandler instance.ColumnCreated, handler
C# 
public event GridColumnCreatedEventHandler ColumnCreated()
 

Event Data

The event handler receives an argument of type GridColumnCreatedEventArgs containing data related to this event. The following GridColumnCreatedEventArgs properties provide information specific to this event.

PropertyDescription
Column  
OwnerTableView  

Remarks

The ColumnCreated event of Telerik RadGrid is designated to customize auto-generated columns at runtime (for example DataFormatString, ReadOnly or other properties of these auto-generated columns).

Requirements

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

See Also