Adding Tabs in a Page

Posted by Community Admin on 04-Aug-2018 19:10

Adding Tabs in a Page

All Replies

Posted by Community Admin on 08-May-2013 00:00

I need to have multiple tabs on a page, so that I can display different content under different tabs. 
I have achieved it by adding the following code using RadTabStrip. 

<telerik:RadTabStrip ID="RadTabStrip1"  runat="server" MultiPageID="RadMultiPage1"> 
                               <Tabs> 
                                   <telerik:RadTab runat="server" Text="Tab1">
                                   </telerik:RadTab> 
                                   <telerik:RadTab runat="server" Text="Tab2"> 
                                   </telerik:RadTab> 
                              </Tabs> 
</telerik:RadTabStrip> 
<telerik:RadMultiPage id="RadMultiPage1" runat="server" SelectedIndex="0" Width="400"> 
                     <telerik:RadPageView id="Pageview1" runat="server"> 
                              <asp:ContentPlaceHolder runat="server" ID="ph1"></asp:ContentPlaceHolder> 
                     </telerik:RadPageView> 
                     <telerik:RadPageView id="Pageview2" runat="server"> 
                             <asp:ContentPlaceHolder runat="server" ID="ph2"></asp:ContentPlaceHolder> 
                      </telerik:RadPageView>  
</telerik:RadMultiPage>

But here the title for every tab is fix. I am not able to have a custom title which can be changed by a back end User. Any ideas on how to achieve it?

Posted by Community Admin on 08-May-2013 00:00
Posted by Community Admin on 08-May-2013 00:00

Thanks a lot Steve.
It works great!

This thread is closed