8.1.3.4 Highlighting the Current Category; Listing 8-10. Highlighting the Selected Category in the Menu.cshtml File
parent
6cc688fc9d
commit
59e5f471db
|
@ -6,14 +6,16 @@
|
||||||
|
|
||||||
@foreach (var link in Model)
|
@foreach (var link in Model)
|
||||||
{
|
{
|
||||||
@Html.RouteLink(link, new
|
@Html.RouteLink(link,
|
||||||
|
new
|
||||||
{
|
{
|
||||||
controller = "Product",
|
controller = "Product",
|
||||||
action = "List",
|
action = "List",
|
||||||
category = link,
|
category = link,
|
||||||
page = 1
|
page = 1
|
||||||
}, new
|
},
|
||||||
|
new
|
||||||
{
|
{
|
||||||
@class = "btn btn-block btn-default btn-lg"
|
@class = "btn btn-block btn-default btn-lg" + (link == ViewBag.SelectedCategory ? " btn-primary" : "")
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue