Hi,
I'm using RadPanel from Telerik RadControls for ASP.Net AJAX 2009 R1, and I've exactly the same issue.
I've a page with setting in header as
<!
DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" >
I placed the animation settings in the RadPanelBar, but the PanelBar is empty.
<
telerik:RadPanelBar OnClientMouseOver="OnRadPanelBarMouseOverHandler" OnClientMouseOut="OnRadPanelBarMouseOutHandler"
EnableEmbeddedSkins="false" EnableAjaxSkinRendering="true" Skin="SNetMenu" Width="180"
ID="rpbMenu" runat="server" ExpandMode="FullExpandedItem" CollapseAnimation-Type="linear"
CollapseAnimation-Duration="500" ExpandAnimation-Duration="500" ExpandAnimation-Type="linear">
</telerik:RadPanelBar>
My requirement is to create PanelSections at runtime, so I add them via CodeBehind as below:
RadPanelItem
rpiTemp = new RadPanelItem();
if(!blnEmptyAccordion) rpiTemp.Controls.Add(objRadMenu); //PanelItem has a dynamically created RadMenu inside it.
((
RadPanelItem)rpbMenu.Items[intSectionCount]).Items.Add(rpiTemp);
But when the PanelBars are clicked, there is no animation and there is an abrupt hiding of one section and the other section is shown - as if it is a simple JS-based show/hide!
Can you please check and provide a solution? The application goes to production in one month and we've this issue reported by client. :(
Best Regards
Veenu Munjal