Skip to content

Commit a930d15

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent c0029f5 commit a930d15

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/kendo.combobox.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ var __meta__ = { // jshint ignore:line
812812
shouldTrigger = that._value(dataItem) !== List.unifyType(that.value(), typeof that._value(dataItem));
813813

814814
if(!shouldTrigger){
815-
that.input.val(that._accessor());
815+
that.input.val(that._text(dataItem));
816816
}
817817
}
818818

@@ -992,10 +992,6 @@ var __meta__ = { // jshint ignore:line
992992

993993
if(dataItem){
994994
shouldTrigger = that._value(dataItem) !== List.unifyType(that.value(), typeof that._value(dataItem));
995-
996-
if(!shouldTrigger){
997-
that.input.val(that._accessor());
998-
}
999995
}
1000996

1001997
if (shouldTrigger && that.trigger("select", { dataItem: dataItem, item: current })) {

src/kendo.multiselect.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -734,6 +734,7 @@ var __meta__ = { // jshint ignore:line
734734
// trigger the DOM change event so any subscriber gets notified
735735
that.element.trigger(CHANGE);
736736
}
737+
that.popup.position();
737738
that._toggleCloseVisibility();
738739
},
739740

@@ -1356,7 +1357,6 @@ var __meta__ = { // jshint ignore:line
13561357
return;
13571358
}
13581359

1359-
that.popup.position();
13601360
that.persistTagList = false;
13611361
return selectIndices(indices);
13621362
},

0 commit comments

Comments
 (0)