diff options
author | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2017-04-19 14:27:13 +0300 |
---|---|---|
committer | Aleksi Hietanen <aleksi@vaadin.com> | 2017-04-19 14:27:13 +0300 |
commit | 8b95318c6c700c946478567193cb0e3040c1dad2 (patch) | |
tree | 64730e6bc737cd1259c78d22cc3a71d62b1fdc16 /client | |
parent | 7d1b06cbc4dd07b8b40fbc63d148027fd4c9cf4b (diff) | |
download | vaadin-framework-8b95318c6c700c946478567193cb0e3040c1dad2.tar.gz vaadin-framework-8b95318c6c700c946478567193cb0e3040c1dad2.zip |
Fix issues in Grid with undefined height (#9104)
Diffstat (limited to 'client')
-rw-r--r-- | client/src/main/java/com/vaadin/client/widgets/Escalator.java | 55 |
1 files changed, 35 insertions, 20 deletions
diff --git a/client/src/main/java/com/vaadin/client/widgets/Escalator.java b/client/src/main/java/com/vaadin/client/widgets/Escalator.java index 1f223c1d85..d869390f82 100644 --- a/client/src/main/java/com/vaadin/client/widgets/Escalator.java +++ b/client/src/main/java/com/vaadin/client/widgets/Escalator.java @@ -702,13 +702,13 @@ public class Escalator extends Widget /*-{ var vScroll = esc.@com.vaadin.client.widgets.Escalator::verticalScrollbar; var vScrollElem = vScroll.@com.vaadin.client.widget.escalator.ScrollbarBundle::getElement()(); - + var hScroll = esc.@com.vaadin.client.widgets.Escalator::horizontalScrollbar; var hScrollElem = hScroll.@com.vaadin.client.widget.escalator.ScrollbarBundle::getElement()(); - + return $entry(function(e) { var target = e.target; - + // in case the scroll event was native (i.e. scrollbars were dragged, or // the scrollTop/Left was manually modified), the bundles have old cache // values. We need to make sure that the caches are kept up to date. @@ -729,29 +729,29 @@ public class Escalator extends Widget return $entry(function(e) { var deltaX = e.deltaX ? e.deltaX : -0.5*e.wheelDeltaX; var deltaY = e.deltaY ? e.deltaY : -0.5*e.wheelDeltaY; - + // Delta mode 0 is in pixels; we don't need to do anything... - + // A delta mode of 1 means we're scrolling by lines instead of pixels // We need to scale the number of lines by the default line height if(e.deltaMode === 1) { var brc = esc.@com.vaadin.client.widgets.Escalator::body; deltaY *= brc.@com.vaadin.client.widgets.Escalator.AbstractRowContainer::getDefaultRowHeight()(); } - + // Other delta modes aren't supported if((e.deltaMode !== undefined) && (e.deltaMode >= 2 || e.deltaMode < 0)) { var msg = "Unsupported wheel delta mode \"" + e.deltaMode + "\""; - + // Print warning message esc.@com.vaadin.client.widgets.Escalator::logWarning(*)(msg); } - + // IE8 has only delta y if (isNaN(deltaY)) { deltaY = -0.5*e.wheelDelta; } - + @com.vaadin.client.widgets.Escalator.JsniUtil::moveScrollFromEvent(*)(esc, deltaX, deltaY, e); }); }-*/; @@ -1189,9 +1189,6 @@ public class Escalator extends Widget assertArgumentsAreValidAndWithinRange(index, numberOfRows); rows -= numberOfRows; - if (heightMode == HeightMode.UNDEFINED) { - heightByRows = rows; - } if (!isAttached()) { return; @@ -1207,8 +1204,9 @@ public class Escalator extends Widget * range of logical indices. This may be fewer than {@code numberOfRows} * , even zero, if not all the removed rows are actually visible. * <p> - * The implementation must call {@link #paintRemoveRow(TableRowElement, int)} - * for each row that is removed from the DOM. + * The implementation must call + * {@link #paintRemoveRow(TableRowElement, int)} for each row that is + * removed from the DOM. * * @param index * the logical index of the first removed row @@ -1315,10 +1313,6 @@ public class Escalator extends Widget } rows += numberOfRows; - if (heightMode == HeightMode.UNDEFINED) { - heightByRows = rows; - } - /* * only add items in the DOM if the widget itself is attached to the * DOM. We can't calculate sizes otherwise. @@ -2677,6 +2671,24 @@ public class Escalator extends Widget } @Override + public void insertRows(int index, int numberOfRows) { + super.insertRows(index, numberOfRows); + + if (heightMode == HeightMode.UNDEFINED) { + setHeightByRows(getRowCount()); + } + } + + @Override + public void removeRows(int index, int numberOfRows) { + super.removeRows(index, numberOfRows); + + if (heightMode == HeightMode.UNDEFINED) { + setHeightByRows(getRowCount()); + } + } + + @Override protected void paintInsertRows(final int index, final int numberOfRows) { if (numberOfRows == 0) { @@ -3000,7 +3012,8 @@ public class Escalator extends Widget y += spacerContainer.getSpacerHeight(i); } - // Execute the registered callback function for newly created rows + // Execute the registered callback function for newly created + // rows Optional.ofNullable(newEscalatorRowCallback) .ifPresent(callback -> callback.accept(addedRows)); @@ -3131,7 +3144,8 @@ public class Escalator extends Widget } // Move rest of the rows to the Escalator's top - Range visualRange = Range.withLength(0, visualRowOrder.size()); + Range visualRange = Range.withLength(0, + visualRowOrder.size()); moveAndUpdateEscalatorRows(visualRange, 0, 0); sortDomElements(); @@ -6447,6 +6461,7 @@ public class Escalator extends Widget * @see #setHeightMode(HeightMode) */ public void setHeightByRows(double rows) throws IllegalArgumentException { + getLogger().warning("HeightByRows: " + rows); if (rows <= 0) { throw new IllegalArgumentException( "The number of rows must be a positive number."); |