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

[Solved] RadTabStrip disable not working with Firefox

0 Answers 21 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Balajiprasad
Top achievements
Rank 1
Balajiprasad asked on 17 May 2011, 06:02 AM
Hi,
I have try to use RadTabStrip. My purpose is to at Page Load all the Tabs should in Disable Mode (With controls inside tabstrip) and after processing i need to enable Tabs according to the need. Partially i need to enable tabs. Its working fine with IE. But the same code not working with Firefox. Inside the <table><tr><td> elements not disabling. Following is the Code Example,


//Client Side
 
<telerik:RadTabStrip ID="MainTab" runat="server" SelectedIndex="0" Skin="Default" <br>
                    MultiPageID="RadMultiPage1"   OnClientTabSelecting="onClientTabSelecting" OnTabClick="MainTab_TabClick" Width="950px"><br>
            <Tabs><br>
                <telerik:RadTab runat="server" Text="Text1" Value="Text1"><br>
                </telerik:RadTab><br>
                <telerik:RadTab runat="server" Text="Text2" Value="Text2"><br>
                </telerik:RadTab><br>
                <telerik:RadTab runat="server" Text="Text3" Value="Text3"><br>
                </telerik:RadTab><br>
            </Tabs><br>
        </telerik:RadTabStrip><br>
<br>
<br>
    <telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0" <br>
                        Height="100%"><br>
                    <telerik:RadPageView ID="rpvText1" runat="server" BorderStyle="Solid" <br>
                    BorderWidth="1px" DefaultButton="lnkRecord_Save" BorderColor="Silver"><br>
<br>
                            <div style="padding-left: 20px"><br>
                     <table border="0" cellpadding="4" cellspacing="2" style="width: 100%" class="CommonFont"><br>
                                        <tr><br>
                                            <td style="width: 14%" valign="top"><br>
                                                 S.No<br>
                                            </td><br>
                                            <td style="width: 14%" valign="top"><br>
                                                 <asp:label id="txtSno" runat="server"/><br>
                                            </td><br>
                                               .....................<br>
                                         </tr><br>
                    </table><br>
                      </div><br>
               </telerik:RadPageView><br>
                ........


//Server Side
  protected void Page_Load(object sender, EventArgs e)<br>
         {<br>
         if (!IsPostBack)<br>
           {<br>
            MainTab.Tabs[0].Enabled = false;<br>
            MainTab.Tabs[1].Enabled = false;<br>
            MainTab.Tabs[2].Enabled = false;<br>
            RadMultiPage1.Enabled = false;<br>
            RadMultiPage1.PageViews[0].Enabled = false;<br>
            MainTab.Enabled = false;<br>
           }<br>
          }
Tags
General Discussions
Asked by
Balajiprasad
Top achievements
Rank 1
Share this question
or