This question is locked. New answers and comments are not allowed.
When I use the .action method the menu renders with t-hover-state assigned to the class of the root menu node
If I remove the .Action("...") the menu renders correctly.
Html.Telerik().Menu().Name("myMenu").Items(
item =>
{
item.Add()
.Text("Company Rules")
.ImageUrl("~/Content/Common/Icons/Suites/mvc.png")
.Items(it =>
{
it.Add().Text("Earnings").Action("Index", "Earning");
it.Add().Text("Grid");
it.Add().Text("Menu");
it.Add().Text("PanelBar");
it.Add().Text("TabStrip");
});
If I remove the .Action("...") the menu renders correctly.
Html.Telerik().Menu().Name("myMenu").Items(
item =>
{
item.Add()
.Text("Company Rules")
.ImageUrl("~/Content/Common/Icons/Suites/mvc.png")
.Items(it =>
{
it.Add().Text("Earnings").Action("Index", "Earning");
it.Add().Text("Grid");
it.Add().Text("Menu");
it.Add().Text("PanelBar");
it.Add().Text("TabStrip");
});