RadGrid for ASP.NET

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


Fires when various item events occur - for example, before Pager item is initialized, before EditForm is initialized, etc.   

Event Data

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

PropertyDescription
Canceled Set to true to cancel the default event execution, if available. The ItemCreated and ItemDataBound events cannot be cancelled.
EventInfo Event info object. Cast to derrived classes to obtain the appropriate instance
Item  
 

 

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

Syntax

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

Event Data

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

PropertyDescription
Canceled Set to true to cancel the default event execution, if available. The ItemCreated and ItemDataBound events cannot be cancelled.
EventInfo Event info object. Cast to derrived classes to obtain the appropriate instance
Item  

Requirements

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

See Also