3 Answers, 1 is accepted
0
Shinu
Top achievements
Rank 2
answered on 13 Jul 2010, 05:58 AM
Hello Smith,
You need to get reference to corresponding TabStrip and use the FindControl() method to access the control placed inside it.
C#:
And the relevant aspx is:
[Add
-Shinu.
You need to get reference to corresponding TabStrip and use the FindControl() method to access the control placed inside it.
C#:
RadTab tab = (RadTab)RadTabStrip1.FindTabByText("TabText"); // Get the tabHtmlImage image1 = (HtmlImage)tab.FindControl("Image1"); // Image1 is Id of HTML image in TabTemplateimage1.Visible = false;And the relevant aspx is:
<telerik:RadTab runat="server" Selected="True" Text="test"> <TabTemplate> <img alt="click me to edit" runat="server" id="Image1" src="../Images/Edit.gif" /> </TabTemplate></telerik:RadTab>runat="server" to image control access the from code behind]-Shinu.
0
smith spd
Top achievements
Rank 1
answered on 15 Jul 2010, 08:14 PM
Thank you shinu.
I m closing tabs using javascript in the above ref.
But, if I want to close the dynamically created tabs. This javascript doesn't work.
Can you let me know how to achieve this?
I have small snippet to close the tabs dynamically but I have that not working properly.
Please help.
Would be of great help if you can resolve one of my issues here
I m closing tabs using javascript in the above ref.
But, if I want to close the dynamically created tabs. This javascript doesn't work.
Can you let me know how to achieve this?
I have small snippet to close the tabs dynamically but I have that not working properly.
Protected Sub ImgBtn_Click(ByVal sender As Object, ByVal e As EventArgs) Dim currentTab As RadTab = tabContainer.InnermostSelectedTab If currentTab IsNot Nothing Then Dim owner As IRadTabContainer = currentTab.Owner tabMultiPage.PageViews.RemoveAt(tabMultiPage.SelectedIndex) owner.Tabs.Remove(currentTab) If owner.Tabs.Count > 0 Then owner.SelectedIndex = 0 End If End If End SubPlease help.
Would be of great help if you can resolve one of my issues here
0
Hi smith,
I cannot reproduce this issue with the provided code. Please send us sample code which will help us observe the problem.
Best wishes,
Yana
the Telerik team
I cannot reproduce this issue with the provided code. Please send us sample code which will help us observe the problem.
Best wishes,
Yana
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items