Hello,
I have been using Data Virtualization with CloudPak for Data, and objects list in the cart review page, does not display correctly:

And I have found that it is because the CSS style issue, originally:
.review-review {
overflow: hidden;
}
.DataTable-root {
overflow: hidden;
display: flex;
}
has to be changed into:
.review-review {
overflow: auto;
}
.DataTable-root {
overflow: auto;
display: inline-table;
}
And now we finally have fully displayed objects list, and bars to scroll:

But one question left: Where or Whom shall I submit this ticket to?
Best regards,