expand/collapse of the HorizontalMenuDropDown
i'm trying to set duration for the expand/collapse of the HorizontalMenuDropDown and the parameters we use seem to have no effect, do you know of any way to slow down the expand/collapse of this control?
Hi,
HorizontalMenuDropDown menu is using RadMenu to render the navigation. To change the speed at which the menu collapses and expands refer to this RadMenu documentation. There is no direct way to modify the built in navigation template to add the needed properties to control the animation speed
<telerik:RadMenu ID="RadMenu1" runat="server"> <ExpandAnimation Type="OutQuart" Duration="300" /> <CollapseAnimation Type="OutQuint" Duration="200" /></telerik:RadMenu><%@ Register Assembly="Telerik.Sitefinity" Namespace="Telerik.Sitefinity.Web.UI.NavigationControls" TagPrefix="sfMap" %><sfMap:SitefinitySiteMapDataSource ID="SM" runat="server" ShowStartingNode="false" /><telerik:RadMenu runat="server" ID="menu" DataSourceID="SM" Flow="Vertical"></telerik:RadMenu>