Skip to content

Commit

Permalink
fix bug #2169 list of open combos is fixed and does not scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
Volen99 committed Jan 31, 2022
1 parent 8894522 commit 524abdd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/js/modules/infragistics.ui.combo.js
Original file line number Diff line number Diff line change
Expand Up @@ -2588,6 +2588,9 @@
if (item.childElementCount > 0) {
this._setItemHTML(item.children, $listItem.children());
} else {
// V.D. 21th January 2022 Bug #2169 - If virtualization is TRUE and itemTemplate is set, the list of open combos is fixed and does not scroll
// https://github.com/IgniteUI/ignite-ui/issues/2169
$listItem[ 0 ].children[ i ].defaultValue = item.defaultValue;
$listItem[ 0 ].children[ i ].innerHTML = item.innerHTML;
}
}
Expand Down

0 comments on commit 524abdd

Please sign in to comment.