I am creating a kendo tree view. Is it possible to have multiline nodes in kendo tree view. I am using kendo controls in my .net MVC application.
I am using below template to create tree view.
@(Html.Kendo().TreeView()
.Name("treeview-left")
.BindTo((IEnumerable<TreeViewItemModel>)ViewBag.inlineDefault)
.Events(events => events
.Select("onSelect"))
)
Have a look at http://demos.telerik.com/aspnet-mvc/treeview/templates
You should be able to do it like this
Then add the template onto your cshtml
Next create a model
Then add your controller action