Hi Konstantin,
I changed my AjaxManager to be:
<
telerik:RadAjaxManager
ID
=
"RadAjaxManager1"
runat
=
"server"
OnAjaxRequest
=
"RadAjaxManager1_AjaxRequest"
DefaultLoadingPanelID
=
"mainLoadingPanel"
>
<
AjaxSettings
>
<
telerik:AjaxSetting
AjaxControlID
=
"RadAjaxManager1"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"panel1"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
<
telerik:AjaxSetting
AjaxControlID
=
"RadTabStrip1"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"RadTabStrip1"
/>
<
telerik:AjaxUpdatedControl
ControlID
=
"RadMultiPage1"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
<
telerik:AjaxSetting
AjaxControlID
=
"RadMultiPage1"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"RadTabStrip1"
/>
<
telerik:AjaxUpdatedControl
ControlID
=
"RadMultiPage1"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
</
AjaxSettings
>
</
telerik:RadAjaxManager
>
and I also found i had not set the SelectedIndex on the MultiPage in my AjaxRequest.
The tab is now displayed correctly after the user adds an item however this change has led to another problem. The CSS that places the PageView to the right of my TabStrip (Vertical, left-aligned ) is no longer working and the PageView now appears below the TabStrip instead of to the right.
<
telerik:RadTabStrip
runat
=
"server"
ID
=
"RadTabStrip1"
MultiPageID
=
"RadMultiPage1"
Skin
=
"Glow"
Width
=
"120px"
Height
=
"355px"
SelectedIndex
=
"0"
Orientation
=
"VerticalLeft"
>
<
Tabs
>
<
telerik:RadTab
PageViewID
=
"PageView1"
Font-Size
=
"Small"
Text
=
"Basic Data"
></
telerik:RadTab
>
<
telerik:RadTab
PageViewID
=
"PageView2"
Font-Size
=
"Small"
Text
=
"Order Items"
></
telerik:RadTab
>
<
telerik:RadTab
PageViewID
=
"PageView3"
Font-Size
=
"Small"
Text="Terms &<br>Comments"></
telerik:RadTab
>
<
telerik:RadTab
PageViewID
=
"PageView4"
Font-Size
=
"Small"
Text
=
"More Info"
></
telerik:RadTab
>
<
telerik:RadTab
PageViewID
=
"PageView5"
Font-Size
=
"Small"
Text
=
"Add a new Item"
></
telerik:RadTab
>
</
Tabs
>
</
telerik:RadTabStrip
>
<
telerik:RadMultiPage
runat
=
"server"
ID
=
"RadMultiPage1"
SelectedIndex
=
"0"
CssClass
=
"innerMultiPage"
>
<
telerik:RadPageView
runat
=
"server"
ID
=
"PageView1"
>
<
div
class
=
"orderData"
>
Order specific data here .............
</
div
>
</
telerik:RadPageView
>
</
telerik:RadMultiPage
>
.innerMultiPage {
display
: inline-
block
;
*
display
:
inline
;
zoom:
1
;
position
:
relative
;
margin-bottom
:
-3px
;
}
Any suggestions as to why this has stopped working ??
I can send you a sample but couldn't attach a zip file to this post.
Thanks, Kyle