Skip to content

Commit

Permalink
Merge pull request #2175 from IgniteUI/fix-scrolling-virtualized-temp…
Browse files Browse the repository at this point in the history
…lated-combo-21.1

Fix scrolling virtualized templated combo 21.1
  • Loading branch information
hanastasov authored Feb 3, 2022
2 parents 9ee13cf + 3cf9419 commit 02987a9
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 02987a9

Please sign in to comment.