This issue ONLY happens on IE 10. All other browsers and IE10 in Compatibility mode seem to work fine.
I have a simple TabStrip wired into a Simple MultiPage Control
Each MuliPage simply has a RadTextBox on it.
Enter a value on tab 1, then change to Tab 2, When you go back to Tab 1 the value is entered is not available.
Even if you put an OnTab Click event, the Text is not available in Code Behind.
However, if there was a Button on the Tab and the Button was clicked, you CAN see the value of the textbox AND it will persist across the TabChange
If you use a standard Text Box, the issue disappears.
Please see the below sample code.
Is there anything i should be doing differently for the valueto be persistant accross the tabchange event.
Again, this ONLY happens on IE 10
I have a simple TabStrip wired into a Simple MultiPage Control
Each MuliPage simply has a RadTextBox on it.
Enter a value on tab 1, then change to Tab 2, When you go back to Tab 1 the value is entered is not available.
Even if you put an OnTab Click event, the Text is not available in Code Behind.
However, if there was a Button on the Tab and the Button was clicked, you CAN see the value of the textbox AND it will persist across the TabChange
If you use a standard Text Box, the issue disappears.
Please see the below sample code.
Is there anything i should be doing differently for the valueto be persistant accross the tabchange event.
Again, this ONLY happens on IE 10
<telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager> <telerik:RadTabStrip ID="tbLoan" runat="server" AutoPostBack ="True" EnableViewState="true" SelectedIndex="0" OnTabClick="tbLoan_TabClick" MultiPageID="mpLoanInput" Orientation="VerticalLeft" Style="float: left; width: 150px;"> <Tabs> <telerik:RadTab runat="server" Text="Test1" Value="LENDER" > </telerik:RadTab> <telerik:RadTab runat="server" Text="Test2" Value="LOANINFO" > </telerik:RadTab> </Tabs> </telerik:RadTabStrip> <telerik:RadMultiPage runat="server" CssClass="multiPage" ID="mpLoanInput" SelectedIndex="0" Width="100%" RenderSelectedPageOnly="true" > <telerik:RadPageView runat="server" ID="pvLender"> 1 <telerik:RadTextBox ID="RadTextBox1" runat="server" EnableViewState="true" ></telerik:RadTextBox> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> </telerik:RadPageView> <telerik:RadPageView runat="server" ID="pvLoanInfo"> 2 <telerik:RadTextBox ID="RadTextBox2" runat="server"></telerik:RadTextBox> <telerik:RadButton ID="RadButton1" runat="server" Text="RadButton" OnClick ="RadButton1_Click"></telerik:RadButton> </telerik:RadPageView> </telerik:RadMultiPage>