or
@(Html.Kendo().TreeView() .Name("SampleList") .Checkboxes(chk => { chk.CheckChildren(true); }) .DragAndDrop(false) .ExpandAll(true)......Columns(columns => { columns.Bound(e => e.InternalId).Width(60).Filterable(filter => filter.UI("NumericFilter()")); })function NumericFilter(control) { alert ("Got here..."); $(control).kendoNumericTextBox({ "format": "n0", "decimals": 0 });}datepicker.setOptions({ format: "dd/MM/yyyy", parseFormats: ["dd/MM/yy"], culture: window.culture, min: new Date(1000, 0, 1), max: new Date(9999, 11, 31), value: dateValue});Please note:
1. This behavior is common in all browsers like Internet Explorer, Firefox, Chrome
2. Kendo js version: Kendo UI Complete v2013.3.1324
Please advise how to make Shift+Tab work for this scenario.


function onIncDataBound() {var dropdownlist = $("#IncludeExclude").data("kendoDropDownList");if (dropdownlist.dataSource.data().length == 1) {debugger;var items = $("li.k-state-selected", $("#IncludeExclude-list"));dropdownlist.trigger("select", { item: items, value: dropdownlist.text() });}} function onInExSelect(e) { debugger; var projSq = '@Model.Project.ProjSq'; var typeDol = $('#type').val(); var county = $('#county').val(); var dataItem = this.dataItem(e.item); var incExc = dataItem.Value; var Url = '@Url.Action("GetDecision", "Shared")'; $.ajax({ url: Url, type: 'GET', dataType: 'HTML', data: { cnty: county, projSq: projSq, includeExclude: incExc, type: typeDol } })
@(Html.Kendo().DropDownListFor(d => d.RequestFlatten.IncludeExclude)
.Name("IncludeExclude")
.HtmlAttributes(new { style = "width:450px" })
.OptionLabel("Select Include/Exclude")
.DataTextField("Description")
.DataValueField("Value")
.CascadeFromField("Type")
.Events(e => e.Select("onInExSelect").DataBound("onIncDataBound"))
.CascadeFrom("FdolTypeCode")
.AutoBind(false)
.Enable(false)
.DataSource(ds => ds.Read(r => r.Action("GetIncludeExcludeByCountyAndType", "Shared").Data("filterIncludeEx"))
.ServerFiltering(true)))
@Html.HiddenFor(h => h.RequestFlatten.IncludeExclude, new { id = "incExc" })
