3 Answers, 1 is accepted
0

Princy
Top achievements
Rank 2
answered on 03 Feb 2009, 11:27 AM
Hi,
You can drag and drop the user control containing the textbox into the TabTemplate of the RadTabStrip on the designer page. The corresponding html mark up is as shown below:
aspx:
Thanks
Princy.
You can drag and drop the user control containing the textbox into the TabTemplate of the RadTabStrip on the designer page. The corresponding html mark up is as shown below:
aspx:
<%@ Register Src="~/WebUserControl2.ascx" TagName="UserControl" TagPrefix="uc" %> |
<telerik:RadTabStrip ID="RadTabStrip1" runat="server"> |
<Tabs> |
<telerik:RadTab Text="TabA"> |
<TabTemplate> |
<uc:UserControl ID="UserControl1" runat="server" /> |
</TabTemplate> |
</telerik:RadTab> |
</Tabs> |
</telerik:RadTabStrip> |
Thanks
Princy.
0

NIRAKAR
Top achievements
Rank 1
answered on 05 Feb 2009, 01:41 PM
Hi Princy,
In mu program, tabs are creating dynamically. So User control is showing left site of the tabs. I want to show the user control always right site of the tabstrip.
pls guide me.
Nirakar.
In mu program, tabs are creating dynamically. So User control is showing left site of the tabs. I want to show the user control always right site of the tabstrip.
pls guide me.
Nirakar.
0

Princy
Top achievements
Rank 2
answered on 13 Feb 2009, 04:29 AM
Hi,
You can add a div Container in the template and set the style property "direction" to "rtl" . Then load the UserControl in the div Container.
Thanks,
Princy
You can add a div Container in the template and set the style property "direction" to "rtl" . Then load the UserControl in the div Container.
Thanks,
Princy