i have a databound asp.net menu with the following databindings
<DataBindings>
<asp:MenuItemBinding TextField="title" ToolTipField="description" NavigateUrlField="url" SelectableField="AsLink" />
</DataBindings>
now any node which becomes non selectable also loses its arrow, even if it has children
why is that and how can we remedy this?
i have seen some suggestions to use StaticEnableDefaultPopOutImage. but that doesnt help.
neither should it, as its purpose is according to msdn
Gets or sets a value indicating whether the built-in image is displayed to indicate that a static menu item has a submenu
and my issue is equally with static and dynamic nodes, in case of non-selectability
im in .net 4.0
thank you