BoldDeskBoldDesk is now live on Product Hunt with a special offer: 50% off all plans. Let's grow together! Support us.
Hi Steven,
Thanks for contacting Syncfusion support.
When placing Menu control inside Accordion control, the height of Accordion control depends upon the content present in that. So we suggest you to set the heightstyle to ‘content’ in script and also set height for Menu control. Please refer the following code snippet.
<code>
<script type ="text/javascript">
@{Html.Syncfusion().Menu("MyItemsMenu", new { style = "outline:0 none; height: 133px;" })
.Mode(MenuModel.ModeType.NormalMenu).Orientation(MenuModel.MenuOrientation.Vertical).Render();
}
$(function () {
$('#myAccordion').accordion({
heightStyle: "content",
});
});
</script>
Note : Heightstyle : ‘content’ supports above Jquery – UI 1.9.1. So Please refer the below given code snippet which explains the steps when we refer the Jquery UI 1.9
[_Layout.cshtml]
<script src='@Url.Content('~/Scripts/jquery-ui.js')' type='text/javascript'></script>
[Web.Config]
<appSettings>
<add key='sfJqueryload' value='false'/>
</appSettings>
Note: The above given code should be used only if you have added the jquery-ui file explicitly in your sample. This will avoid the conflict of different version of jquery-ui since this script will also be loaded internally from our source
</code>
If you want to increase the height of Accordion content on mouse hovering in Menu control. We suggest you to add the popup menu height to the height of Accordion control in ClientSideMouseOver and ClientSideMouseOut manually.
Note: If we have misunderstood your query, could you please provide the sample which illustrates this issue. It will help us to work on efficient way and provide a proper sample.
Please let us know if you have further queries.
Warm Regards,
Gurunathan