This question is locked. New answers and comments are not allowed.
I am unable to get the menu working.
I can create the menu
| .Items(menu => menu.Add() |
| .Text("Search") |
| .ImageUrl("~/Content/Icons/search.png") |
| .Items(item => |
| { |
| item.Add().Text("Søg").Action("Index", "SearchSimple"); |
| item.Add().Text("Udvidet").Action("Index", "SearchExtended"); |
| item.Add().Text("Expert").Action("Index", "SearchExpert"); |
| })) |
| .Render(); |
And have included this:
| <link href="../../Content/telerik.common.css" rel="stylesheet" type="text/css" /> |
| <link href="../../Content/telerik.examples.min.css" rel="stylesheet" type="text/css" /> |
| <link href="../../Content/black.css" rel="stylesheet" type="text/css" /> |
| <script src="../../Scripts/telerik.menu.min.js" type="text/javascript"></script> |
It looks nice but when I click on the drop-down arrow nothing happens. Any suggestions
I have tried to attach a small 95kb .png file but I can't see the file - why?