Skip to content

Commit af1b13b

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 8085339 commit af1b13b

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"version": "1.0.0",
1212
"dependencies": {},
1313
"devDependencies": {
14-
"@progress/kendo-theme-bootstrap": "4.30.0",
15-
"@progress/kendo-theme-default": "4.32.0",
16-
"@progress/kendo-theme-material": "3.28.0",
14+
"@progress/kendo-theme-bootstrap": "4.31.0",
15+
"@progress/kendo-theme-default": "4.33.0",
16+
"@progress/kendo-theme-material": "3.29.0",
1717
"amd-optimize": "0.6.1",
1818
"autoprefixer": "^9.1.5",
1919
"bootstrap": "^4.0.0",

src/kendo.combobox.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,7 @@ var __meta__ = { // jshint ignore:line
353353
if ((!that.listView.bound() && state !== STATE_FILTER) || state === STATE_ACCEPT) {
354354
that._open = true;
355355
that._state = STATE_REBIND;
356+
356357
if ((that.options.minLength !== 1 && !isFiltered) || (isFiltered && that.value() && that.selectedIndex === -1 )) {
357358
that.refresh();
358359
that._openPopup();
@@ -1119,7 +1120,8 @@ var __meta__ = { // jshint ignore:line
11191120
}
11201121
else if (value === "" && that._prev !== "" && that._prev !== undefined) {
11211122
that._clearValue();
1122-
that.search("");
1123+
that._open = true;
1124+
that._state = STATE_REBIND;
11231125
}
11241126

11251127
that._typingTimeout = null;

0 commit comments

Comments
 (0)