I am in the process of developing an internal application with ASP.NET 4.0 using the Yeti Bootstrap Theme.
One issue I am encountering is with the navbar dropdown navigation. Pages that are located in the website's root can utilize the dropdown features without any problems. The first level dropdown works with a mouse click, but the dropdown under the Admin selection within "Interface Jobs" only appears when hovering over the selection.
The specific problem I am facing is that after navigating to a page within a dropdown, attempting to use the dropdown navigation on that page does not work. I can only access the Log Viewer page.
Any insights into what might be causing this issue would be greatly appreciated. Thank you in advance for your help!
Master Page Code:
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="BootStrapMasterPage.master.cs" %>
... (code omitted for brevity) ...
Here is the JQuery code that I believe could be causing the problem:
$().dropdown('toggle')
$(document).click(function () {
$(".dropdown").hide('slow');
});
$(".dropdown").click(function (e) {
e.stopPropagation();
});