This question is locked. New answers and comments are not allowed.
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
//Server Side
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> }