Vaadin-grid: Resizing the first column crashes IE11

Created on 9 Jun 2017  路  3Comments  路  Source: vaadin/vaadin-grid

IE11 crashes when the first column is resized:
https://cdn.vaadin.com/vaadin-grid/2.0.2/demo/columns.html#reordering-and-resizing-columns

bug

Most helpful comment

This can be worked around for now by adding a hidden column before the rest of the columns (in case the first column must be resizable):

<vaadin-grid-column hidden>
  <template></template>
</vaadin-grid-column>

All 3 comments

IE11 crash required me to first reorder the first column and then resize it. Plain resize did not crash IE.

This can be worked around for now by adding a hidden column before the rest of the columns (in case the first column must be resizable):

<vaadin-grid-column hidden>
  <template></template>
</vaadin-grid-column>

Doesn't reproduce anymore with the newest releases

Was this page helpful?
0 / 5 - 0 ratings