TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
secerka secerovic
NA
12
11.8k
treeview
Sep 7 2011 1:07 PM
Hello everyone
I installed telerik extensions for ASP.Net MVC
I created a ASP.NET MVC 3web app . Then I made a tree view so now I have:
onntroller:
public ActionResult FirstLook()
{
return View();
}
view:
@model TelerikMvc.Models.Products
@{
ViewBag.Title = "Products";
}
<h2>Ofer today</h2>
@(Html.Telerik().TreeView()
.Name("myTreeView")
.Items(item =>
{ item.Add()
.Text("Products")
.ImageUrl("~/Content/PanelBar/FirstLook/foldersList.gif")
.ImageHtmlAttributes(new { alt = "Folders List Icon" })
.Items((subItem) =>
{
subItem.Add()
.Text("Meat")
.ImageUrl("~/Content/PanelBar/FirstLook/1.png")
.ImageHtmlAttributes(new { alt = "Folder List Icon" });
subItem.Add()
.Text("Milk products")
.ImageUrl("~/Content/PanelBar/FirstLook/1.png")
.ImageHtmlAttributes(new { alt = "Folder List Icon" });
});
})
)
I also have models:Product.edmx
When I start debugging I see my tree view
My question is:
When I click on the milk products on the tree view, how can I display data of the milk product contained within Product.edmx ?
I need a specific solution because I have reviewed the telerik video tutorials and questions on the forum but I couldnt solve my problem.
Thanks in advance!
Reply
Answers (
0
)
MVC DropDownList problem
Images Got Lost on Post Back