We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 370d1e5 commit dbe9259Copy full SHA for dbe9259
src/kendo.combobox.js
@@ -538,7 +538,7 @@ var __meta__ = { // jshint ignore:line
538
539
this.listView.focus(-1);
540
} else {
541
- if (dataItem) {
+ if (dataItem || dataItem === 0) {
542
value = this._dataValue(dataItem);
543
text = this._text(dataItem);
544
}
src/kendo.dropdownlist.js
@@ -1103,7 +1103,7 @@ var __meta__ = { // jshint ignore:line
1103
1104
this._resetOptionLabel(" k-state-selected");
1105
1106
1107
text = dataItem;
1108
value = that._dataValue(dataItem);
1109
if (optionLabel) {
0 commit comments