This is a migrated thread and some comments may be shown as answers.

Child RadTab.Click Event

1 Answer 63 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Rishi
Top achievements
Rank 1
Rishi asked on 03 Apr 2012, 08:40 PM
Hello, I have the screen as per the below example and I would like to handle an event when Child RadTab clicked.
http://mono.telerik.com/TabStrip/Examples/ServerSide/ServerEvents/DefaultCS.aspx

I tried in all the ways, finally found the above link with an example but the above example also not resolved my issue.
Please let me know, if any have idea about how to deal with Child RadTab.Click Event.

Requirement: We are implementing multiple charts loading at page load, due to some charts performance issues. we decided to load the each chart based on respective tab.click event.

But Childradtab.click not allowing me to write an event.

Thanks In Advance,
Rish.    

1 Answer, 1 is accepted

Sort by
0
Rishi
Top achievements
Rank 1
answered on 03 Apr 2012, 09:58 PM
Resolved.
        

 

 

Protected Sub RadTabStrip1TabClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles RadTabStrip.TabClick

 

 

 

If RadTabStrip.SelectedTab.Text = "Child Tab1" Then

 

OnCapacityRadChartLoad()

 

 

ElseIf RadTabStrip.SelectedTab.Text = "Child Tab2" Then

 

OnRadTabStripRadChartLoad()

 

 

End If

 

 

 

End Sub

 

Tags
TabStrip
Asked by
Rishi
Top achievements
Rank 1
Answers by
Rishi
Top achievements
Rank 1
Share this question
or