I have a MvcSiteMap with a MvcSiteMapNode parent that contains child nodes. The parent node has a url and the children nodes have urls. When displayed, when the mouse hovers over the parent node, the child nodes appear below it, however when the parent node is clicked, the child nodes disappear but the webpage does not navigate to to the url of the parent node.
<mvcSiteMapNode title="Im a Parent" url="~/ParentUrl" >
<mvcSiteMapNode title="Im Child 1" url="~/ChildUrl1" />
<mvcSiteMapNode title="Im Child 2" url="~/ChildUrl2" />
</mvcSiteMapNode>
What is causing the page not to navigate?
Edit (example with pictures):
My assumption is that the click event is being hijacked to make the child node dropdown disappear and not being passed on
Hovering over parent node before click:
After click, dropdown disappears, no navigation to "~/ParentUrl"