Twitter bootstrap + asp.net masterpages, how to set navbar item as active when user selects it?
Asked Answered
A

5

14

We are in se same situation as question Make Twitter Bootstrap navbar link active, but in our case we are using ASP.net and MasterPages...

The thing is the navbar is defined at the masterpage and when you click a menuitem you are redirected to the corresponding child page so how would you do to change the navbar active item consecuently without replicating the logic in each child page? (Preferably without session variables and javascript only at master page)

Allometry answered 10/9, 2012 at 15:35 Comment(1)
There are already similar responses in: hereThunderstorm
A
18

We solved it with the following function at Master Page:

 <script type="text/javascript">
        $(document).ready(function () {
            var url = window.location.pathname;
            var substr = url.split('/');
            var urlaspx = substr[substr.length-1];
            $('.nav').find('.active').removeClass('active');
            $('.nav li a').each(function () {
                if (this.href.indexOf(urlaspx) >= 0) {
                    $(this).parent().addClass('active');
                }
            });
        });
    </script>
Allometry answered 11/9, 2012 at 6:50 Comment(1)
If you want to use jQuery for this, I would recommend to just set the active class to the parent li tag of the active a tag. See my answer below.Apex
L
3

Here is what I have used in Razor:

<li class="@(Model.PageName == "DataEntryForms" ? "active" : "")">
  <a href="DataEntryForms">     
    Data Entry Forms
  </a>
</li>
<li class="@(Model.PageName == "UserAdmin" ? "active" : "")">
  <a href="UserAdmin">      
    User Administration
  </a>
</li>

Just define the name of the page as property in the model, then complete the test for each li that you have.

Luckey answered 11/10, 2013 at 22:42 Comment(0)
E
3
 <script type="text/javascript">
     $(document).ready(function () {
         var url = window.location;
         $('ul.nav li a').each(function () {
             if (this.href == url) {
                 $("ul.nav li").each(function () {
                     if ($(this).hasClass("active")) {
                         $(this).removeClass("active");
                     }
                 });
                 $(this).parent().parent().parent().addClass('active');
                 $(this).parent().addClass('active');                     
             }
         });
     });
</script>
Ergonomics answered 9/12, 2015 at 9:47 Comment(0)
A
1

Assuming that the active class is set correctly by ASP.net, I would recommend an easier solution:

// Add the class to the parent li element of the active a element:
$('#NavigationMenu ul li a.active').parent().addClass('active');

// Remove the active class from the a element:
$('#NavigationMenu ul li a.active').removeClass('active');

Using ASP.net routing, this solution works smoothly in my current project.

And if you want to manipulate the active item of the menu, I would recommend to use the MenuItemDataBound of the menu control in code behind instead. But in my case, this was not necessary.

Apex answered 14/10, 2014 at 23:57 Comment(0)
L
0

Solution by "sujit kinage" worked best for me, however I had to change one line:

var url = window.location.origin + window.location.pathname;
Luca answered 28/8, 2016 at 8:16 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.