RadTabStrip for ASP.NET

RadTabStrip Send comments on this topic.
TabClick Event
See Also 
Telerik.WebControls Namespace > RadTabStrip Class : TabClick Event


Occurs on the server when a tab in the RadTabStrip control is clicked.   

Event Data

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

PropertyDescription
Tab Gets the referenced Tab in the RadTabStrip control when the event is raised.
 

 

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

Syntax

Visual Basic (Declaration) 
Public Event TabClick() As TabStripEventHandler
Visual Basic (Usage)Copy Code
Dim instance As RadTabStrip
Dim handler As TabStripEventHandler
 
AddHandler instance.TabClick, handler
C# 
public event TabStripEventHandler TabClick()
 

Event Data

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

PropertyDescription
Tab Gets the referenced Tab in the RadTabStrip control when the event is raised.

Remarks

The TabClick event requires the AutoPostBack property to be set to true. The tabstrip will also postback if you navigate to a tab using the [tab] key and then press [enter] on the tab that is focused. The instance of the clicked tab is passed to the TabClick event handler - you can obtain a reference to it using the eventArgs.Tab property.

Requirements

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

See Also