Note that there are some explanatory texts on larger screens.

plurals
  1. POBootstrap ASP.net MVC Dropdown menu not visible
    primarykey
    data
    text
    <p>This is the partial view that generates the menu for the site.</p> <pre><code>&lt;div class="nav-collapse collapse"&gt; &lt;!-- .nav, .navbar-search, .navbar-form, etc --&gt; &lt;ul class="nav" &gt; @foreach (var menu in Model) { &lt;li class="dropdown"&gt; &lt;a href="#" class="dropdown-toggle" data-toggle="dropdown"&gt;@menu.DisplayName&lt;/a&gt; @foreach (var menuitem in menu.MenuItems) { &lt;ul class="dropdown-menu" &gt; &lt;li class="dropdown"&gt;@Html.ActionLink(menuitem.DisplayName, menuitem.ActionName, menuitem.ControllerName, new { tabindex = "-1" })&lt;/li&gt; &lt;/ul&gt; } &lt;/li&gt; } &lt;/ul&gt; &lt;/div&gt; </code></pre> <p>The menus can be visible and actually the dropdown menus are also created in the HTML as shown below</p> <pre><code>&lt;div class="navbar-inner"&gt; &lt;div class="container"&gt; &lt;div class="nav-collapse collapse"&gt; &lt;!-- .nav, .navbar-search, .navbar-form, etc --&gt; &lt;ul class="nav"&gt; &lt;li class="dropdown open"&gt; &lt;a data-toggle="dropdown" class="dropdown-toggle" href="#"&gt;Training&lt;/a&gt; &lt;ul class="dropdown-menu"&gt; &lt;li class="dropdown"&gt;&lt;a tabindex="-1" href="/TTS.UI/Menu?Length=18"&gt;Attendance Confirmation&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li class="dropdown"&gt; &lt;a data-toggle="dropdown" class="dropdown-toggle" href="#"&gt;ePARCS&lt;/a&gt; &lt;ul class="dropdown-menu"&gt; &lt;li class="dropdown"&gt;&lt;a tabindex="-1" href="/TTS.UI/Menu?Length=12"&gt;Upload&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p></p> <p>In out put is shown as bellow in the GUI</p> <p><img src="https://i.stack.imgur.com/9F5b8.png" alt="enter image description here"></p> <p>What is the issue with regard to this.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload