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

SkinManager with tabstrip

2 Answers 48 Views
SkinManager
This is a migrated thread and some comments may be shown as answers.
Maher
Top achievements
Rank 1
Maher asked on 14 Aug 2015, 09:28 PM

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"></telerik:RadAjaxManager>
     <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />

     <telerik:RadTabStrip ID="RadTabStrip1" runat="server" MultiPageID="RadMultiPage1"  SelectedIndex="0" Align="Justify" ScrollButtonsPosition="Left"  ScrollChildren="true">
            <Tabs>
                <telerik:RadTab Text="​1"></telerik:RadTab>
                <telerik:RadTab Text="2"></telerik:RadTab>

            </Tabs>
        </telerik:RadTabStrip>
        <telerik:RadMultiPage ID="RadMultiPage1" CssClass="RadMultiPage" runat="server" SelectedIndex="0">
            <telerik:RadPageView ID="RadPageView1" runat="server" Height="700px" ContentUrl="WebForm5.aspx"></telerik:RadPageView>

        </telerik:RadMultiPage>

 how to apply the skin to the pages in the multipage

 

2 Answers, 1 is accepted

Sort by
0
Accepted
Ivan Danchev
Telerik team
answered on 18 Aug 2015, 01:56 PM
Hello,

In order to change the skin in the page loaded through the RadPageView's ContentUrl property, you can save in a Session variable the skin selected in the parent page, then access the session in the loaded page and set its SkinManager's Skin property using the stored value.  

Please, find attached a sample project, which demonstrates the approach described above. The Default.aspx page contains a RadComboBox and is set to RadPageView2's ContentUrl property. Changing the skin on the parent page changes the skin in Default.aspx.

Regards,
Ivan Danchev
Telerik
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 Feedback Portal and vote to affect the priority of the items
0
Maher
Top achievements
Rank 1
answered on 19 Aug 2015, 08:05 PM

Thanks

it worked fine

 

Tags
SkinManager
Asked by
Maher
Top achievements
Rank 1
Answers by
Ivan Danchev
Telerik team
Maher
Top achievements
Rank 1
Share this question
or