I'm experiencing an odd formatting issue when using the RadAjaxManager to make a TabContainer visible. Once the TabContainer is visible, the content of the first tab (which is the one specified by the ActiveTabIndex) appears above the content for the second tab. Additionally, the second tab is selected rather than the first one (which, again, is the one specified by the ActiveTabIndex). I've included a screenshot of what this looks like, along with the code below. If I click on the first tab, and then go back to the second tab, everything is displayed correctly and I can move between tabs without any further issues. If I replace the RadAjaxManager with a regular UpdatePanel then the tabs are rendered correctly. Any assistance you can provide will be helpful - thanks!
<
telerik:RadAjaxManager
ID
=
"ram"
runat
=
"server"
>
<
AjaxSettings
>
<
telerik:AjaxSetting
AjaxControlID
=
"btn"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"tc"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
</
AjaxSettings
>
</
telerik:RadAjaxManager
>
<
asp:Button
ID
=
"btn"
runat
=
"server"
Text
=
"Press Me"
OnClick
=
"btn_Click"
/>
<
ajax:TabContainer
ID
=
"tc"
runat
=
"server"
ActiveTabIndex
=
"0"
Visible
=
"false"
>
<
ajax:TabPanel
ID
=
"tp1"
runat
=
"server"
HeaderText
=
"Tab 1"
>
<
ContentTemplate
>
Tab 1 Content
</
ContentTemplate
>
</
ajax:TabPanel
>
<
ajax:TabPanel
ID
=
"tp2"
runat
=
"server"
HeaderText
=
"Tab 2"
>
<
ContentTemplate
>
Tab 2 Content
</
ContentTemplate
>
</
ajax:TabPanel
>
</
ajax:TabContainer
>
protected
void
btn_Click(
object
sender, EventArgs e)
{
tc.Visible =
true
;
}