This question is locked. New answers and comments are not allowed.
Hi, i have a project in mvc3, this project have 2 areas, Gen and Apl, mi menu telerik esta asi:
@(Html.Telerik().Menu()
.Name("Menu")
.Items(menu =>
{
menu.Add()
.Text("Generales")
.Items(item =>
{
item.Add().Text("Actividades").Action("Index", "Actividad", new { area = "Gen" });
item.Add().Text("Agencias").Action("Index", "SucUrsal", new { area = "Pla" });
});
})
)
when i run the project, all good, but i open and click the submenu opcions, exist a Exception the Null
execpcion
@(Html.Telerik().Menu()
.Name("Menu")
.Items(menu =>
{
menu.Add()
.Text("Generales")
.Items(item =>
{
item.Add().Text("Actividades").Action("Index", "Actividad", new { area = "Gen" });
item.Add().Text("Agencias").Action("Index", "SucUrsal", new { area = "Pla" });
});
})
)
when i run the project, all good, but i open and click the submenu opcions, exist a Exception the Null
execpcion