How do I create tabbed navigation with the "Current" tab highlighted in the UI?
|
8
|
|||||||||
|
|
|
Before MVC I looked at the file path and figured out which tab was currrent. Now it's a lot easier, you can assign the current tab based on the current controller. Check it out ... Most of the work happens in the usercontrol.
Then in your .ascx part of the usercontol call into the SetClass method to check the link against the dict. Like so:
All you need now is the CSS to highlight your current tab. There are a bunch of different ways to do this, but you can get started with some ideas here: http://webdeveloper.econsultant.com/css-menus-navigation-tabs/ Oh, and don't forget to put the usercontrol on your page (or MasterPage) ...
|
||||||||
|
|
|
One method I am using on a current project - this also helps for other page-specific CSS needs. First, an HTML helper that returns a string that represents the current controller and action:
Then, add a call to this helper in your master page:
Now, you can target specific pages with your CSS. To answer your exact question about navigation:
|
||
|
|
