Hi All
I am just playing with the menu control for a project and would like to not include a pop out image within the dynamic menu. At the moment it shows the default triangle image and when I set the property DynamicEnableDefaultPopOutImage="false" I expected this to disappear but it hasn't.
Can anyone see what I could be doing wrong? or have I got mixed up as to what this property should be doing?
Code:
<asp:Menu ID="Menu1" runat="server" DynamicEnableDefaultPopOutImage="False">
<Items>
<asp:MenuItem Text="New Item 1" Value="New Item 1">
<asp:MenuItem Text="New Item 1" Value="New Item 1">
</asp:MenuItem>
</asp:MenuItem>
<asp:MenuItem Text="New Item 2" Value="New Item 2">
<asp:MenuItem Text="New Item 2" Value="New Item 2">
</asp:MenuItem>
</asp:MenuItem>
<asp:MenuItem Text="New Item 3" Value="New Item 3">
<asp:MenuItem Text="New Item 2" Value="New Item 2">
</asp:MenuItem>
</asp:MenuItem>
</Items>
</asp:Menu>
Ta
Rit