Hi
I m using Kendo UI control. I found some issues using them, so need clarification.
1. When dropdown is used inside Kendo Window then it is hidden. Please see below code
@(Html.Kendo().Window()
.Name("widget")
.Title("widget Menu")
.Content(@<text>
@model List<Dashboard.Models.WidgetData>
<div id="widgetMenuselection">
@* @Html.Action("WidgetType", "WidgetType")*@
@(Html.Kendo().DropDownList()
.Name("Text")
.DataTextField("Text")
.DataValueField("Value")
.AutoBind(true)
.BindTo(new List<SelectListItem>() {
new SelectListItem() {Text = "Filter/Menu",Value = "-1"},
new SelectListItem() {Text = "Graph",Value = "1"},
new SelectListItem() {Text = "Tabular",Value = "2"}
})
.Value("-1")
.SelectedIndex(-1)
.Events(e => e.Change("wdgtMenudrplist_change"))
)
</text>)
)
2. I donot find any way to attach checkbox to tree view in Kendo. I m using Razor MVC 4, and my table structure has a seatinggroup table and seating table distinctly with seating group has many seats under it. So can i provide tree view individual values of group and seats.
I m using Kendo UI control. I found some issues using them, so need clarification.
1. When dropdown is used inside Kendo Window then it is hidden. Please see below code
@(Html.Kendo().Window()
.Name("widget")
.Title("widget Menu")
.Content(@<text>
@model List<Dashboard.Models.WidgetData>
<div id="widgetMenuselection">
@* @Html.Action("WidgetType", "WidgetType")*@
@(Html.Kendo().DropDownList()
.Name("Text")
.DataTextField("Text")
.DataValueField("Value")
.AutoBind(true)
.BindTo(new List<SelectListItem>() {
new SelectListItem() {Text = "Filter/Menu",Value = "-1"},
new SelectListItem() {Text = "Graph",Value = "1"},
new SelectListItem() {Text = "Tabular",Value = "2"}
})
.Value("-1")
.SelectedIndex(-1)
.Events(e => e.Change("wdgtMenudrplist_change"))
)
</text>)
)
2. I donot find any way to attach checkbox to tree view in Kendo. I m using Razor MVC 4, and my table structure has a seatinggroup table and seating table distinctly with seating group has many seats under it. So can i provide tree view individual values of group and seats.