I am using tabstrib control in one of our pages.And when we are facing the following issue.
The tabstrib is having two tabs and each of them having a textbox.
After entering a value in tab1 textbox,we are moving to tab2 directly, and if we go back to tab1 the value entered in tab1 textbox is missing.
Please find the code as below..
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Test.aspx.cs" Inherits="WebApplication1.Test" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
</telerik:RadScriptManager>
<div>
<telerik:RadTabStrip AutoPostBack="true" ID="TabStrip" runat="server" SelectedIndex="0"
MultiPageID="MultiPage" Width="98%">
<Tabs>
<telerik:RadTab runat="server" Text="Tab1" Value="Details">
</telerik:RadTab>
<telerik:RadTab runat="server" Text="Tab2" Value="Communications">
</telerik:RadTab>
</Tabs>
</telerik:RadTabStrip>
<telerik:RadMultiPage ID="MultiPage" Width="100%" Height="520px" runat="server" SelectedIndex="0">
<telerik:RadPageView ID="CampaignDetailsPageView" runat="server" Width="100%" Height="100%">
<table>
<tr>
<td>
<telerik:RadTextBox ID="TextBoxTest" runat="server">
</telerik:RadTextBox>
</td>
</tr>
</table>
</telerik:RadPageView>
<telerik:RadPageView ID="RadPageView1" runat="server" Width="100%" Height="100%">
<table>
<tr>
<td>
<telerik:RadTextBox ID="RadTextBox2" runat="server">
</telerik:RadTextBox>
</td>
</tr>
</table>
</telerik:RadPageView>
</telerik:RadMultiPage>
<telerik:RadAjaxManager ID="AjaxManager" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="TabStrip">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="TabStrip" />
<telerik:AjaxUpdatedControl ControlID="MultiPage" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
</div>
</form>
</body>
</html>
This is happening only with version 2013.2.611.40, and its not happening in version 2013.1.417.40 with the same code.
Thank you in advance,
Muthukumar V