Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
30
WebDataMenu Display Issue
posted

Hi, I cannot find a lot of examples about the WebDataMenu, but I tried a simple page where I added 2 subitems. The problem I have is that the sub-items cannot be displayed outside the control. What am I missing?

<html>

<head>

<title>test</title>

</head>

<body bgcolor="#eff3ff">

<form id="Form1" method="post" runat="server">

<ig:WebScriptManager ID="WebScriptManager1" runat="server"></ig:WebScriptManager>

<ig:WebDataMenu ID="WebDataMenu1" runat ="server">

<GroupSettings Orientation="Horizontal"/>

<Items>

<ig:DataMenuItem Text="File"></ig:DataMenuItem>

<ig:DataMenuItem Text="Edit">

<Items>

<ig:DataMenuItem Text="Child Item1">

</ig:DataMenuItem>

<ig:DataMenuItem Text="Child Item2">

</ig:DataMenuItem>

</Items>

</ig:DataMenuItem>

</Items>

 

</ig:WebDataMenu>

</form>

</body>

</html>