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

all pageview are visible on page loading

2 Answers 70 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Aurore
Top achievements
Rank 1
Aurore asked on 10 Jun 2011, 04:12 PM

Hello,

when i load my page, all the pageviews are displayed. I need to click on each tab to obtain the normal display (only the selected pageview).
I precise that it works great on FF but not on IE8

Have you an idea ?
Aurore


Here's the schema of my architecture :
<tlk:RadPane ID="m_oTopPane" runat="server" Scrolling="Both" PanesBorderSize="0">
                <asp:Panel ID="ConfPanel" runat="server" Style="visibility: hidden;">                  
                    <tlk:RadTabStrip ID="m_oRadStrip" runat="server" MultiPageID="RadMultiPage1" Orientation="HorizontalTop"
                        SelectedIndex="0" Width="840" Style="margin-left: 10px;" >
                        <Tabs>
                            <tlk:RadTab runat="server">
                            </tlk:RadTab>
                            <tlk:RadTab runat="server">
                            </tlk:RadTab>
                            <tlk:RadTab runat="server">
                            </tlk:RadTab>
                        </Tabs>
                    </tlk:RadTabStrip>
                    <tlk:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0" >
      <tlk:RadPageView ...>
      </tlk:RadPageView/>
 <tlk:RadPageView ...>
      </tlk:RadPageView/>
 <tlk:RadPageView ...>
      </tlk:RadPageView/>
</tlk:RadMultiPage>
</tlk:RadTabStrip>
<asp:Panel>
</tlk:RadPane>

I set this on web.config
        <add key="Telerik.Skin" value="Sphinx"/>
        <add key="Telerik.EnableEmbeddedSkins" value="false"/>

I use the 2010.3.1317.35 dll version

2 Answers, 1 is accepted

Sort by
0
Aurore
Top achievements
Rank 1
answered on 14 Jun 2011, 09:19 AM
If i made this tricky code on javascipt on pageloading

var tabStrip = $find("m_oRadStrip");
    var tab = tabStrip.get_tabs().getTab(1);
    tab.select();
    var tab = tabStrip.get_tabs().getTab(2);
    tab.select();
    var tab = tabStrip.get_tabs().getTab(0);
    tab.select();

I've no more problem in IE8... but i don't want to use such code !

An idea
Aurore
0
Dimitar Terziev
Telerik team
answered on 15 Jun 2011, 11:16 AM
Hello Aurore,

I've tried to reproduce the problem you are experiencing, but to no avail. Could you provide us with more information regarding the particular implementation of your scenario.

Also please try to set the PageViewID property for every tab and then preselect a particular tab on page load.

Kind regards,
Dimitar Terziev
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

Tags
TabStrip
Asked by
Aurore
Top achievements
Rank 1
Answers by
Aurore
Top achievements
Rank 1
Dimitar Terziev
Telerik team
Share this question
or