* Fix updating Escalator's physical row index.
- Physical index should take into account that more than one row can
have a spacer. Physical index has no practical effect on how Grid looks
like or behaves, since Escalator by design operates independently of it
and the visual positioning of elements is based on the logical and
visual indices. Physical index only affects the order of elements
within the DOM tree, where a mismatch can cause confusion during
debugging.
* Start at -1 to include a spacer that is rendered above the
* viewport, but its parent row is still not shown
*/
+ int addedSpacers = 0;
for (int i = -1; i < visualRowOrder.size(); i++) {
SpacerContainer.SpacerImpl spacer = spacers
.remove(Integer.valueOf(getTopRowLogicalIndex() + i));
if (spacer != null) {
- orderedBodyRows.add(i + 1, spacer.getRootElement());
+ orderedBodyRows.add(i + 1 + addedSpacers,
+ spacer.getRootElement());
spacer.show();
+ ++addedSpacers;
}
}
/*