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

TextBox in TabStrip

3 Answers 113 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
NIRAKAR
Top achievements
Rank 1
NIRAKAR asked on 03 Feb 2009, 07:46 AM
Can i add a user control into TabStrip?

3 Answers, 1 is accepted

Sort by
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:
<%@ 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.
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
Tags
TabStrip
Asked by
NIRAKAR
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
NIRAKAR
Top achievements
Rank 1
Share this question
or