With reference to the attached image
Following is the behavior:
We are using Select tag and convert it to combobox
We are using:
jQuery v1.7.1
Kendo UI v2011.3.1129
ASP.Net MVC 3 (not sure if that matters)
Following is the behavior:
- Issue happens only on the first drop panel that is clicked, once its open it doesn't close, all the other combos work except the first one that is clicked.
- Issue does not happen when there is more content on the page, basically page height is large enough.
We are using Select tag and convert it to combobox
$(this).kendoComboBox({
filter: "contains",
height: 200,
change: function (e) {
if (this._selected == null) {
this.text("(None)");
}
}
});
We are using:
jQuery v1.7.1
Kendo UI v2011.3.1129
ASP.Net MVC 3 (not sure if that matters)