This question is locked. New answers and comments are not allowed.
Hi, I am a new user of Telerik ASP.NET MVC extension (trial).
After install Telerik package I create new project Telerik MVC3 Web Application (Razor) using VS2010, without any modification build it and run it. I see menu Home and About.
I want to know if one can use TabStrip instead of Menu. If yes, how.
Code snippet of my _Layout.cshtml:
After install Telerik package I create new project Telerik MVC3 Web Application (Razor) using VS2010, without any modification build it and run it. I see menu Home and About.
I want to know if one can use TabStrip instead of Menu. If yes, how.
Code snippet of my _Layout.cshtml:
I have tried to take code from TabStrip sample code and replace the menu like following (see attached file), but it doesn't show content of index.cshtml and about.cshtml inside the TabStrip.@(Html.Telerik().Menu().Name("menu").Items(menu => {menu.Add().Text("Home").Action("Index", "Home");menu.Add().Text("About").Action("About", "Home");}))