HandsonTable does not pass all rows

HandsonTable does not transmit all the lines - it only downloads part of all the lines. But when I do Ctrl + A and paste in Excel, I see all the rows. Why doesn't Handsontable display all rows?

 <hot-table col-headers="true" row-headers="true" datarows="data" context-menu  width="1080">
      <hot-column ng-repeat="column in columns" data="{{column.data}}"></hot-column>
</hot-table>
+5
source share
2 answers

To display all rows just set renderAllRows: true

+7
source

The current answer does not answer the original question.

Handsontable does not display all cells at once, because it is designed to be effective for very large datasets. This is done using virtual rendering, dynamically modifying the DOM to include only cells at the scroll position.

, renderAllRows: true, : "If typed true then virtual rendering mechanism for handsontable will be disabled." renderAllRows: true renderAllRows: true, "If typed true then virtual rendering mechanism for handsontable will be disabled." .

, . ,

, . , ( ), ( ). Handsontable.

viewportRowRenderingOffset viewportColumnRenderingOffset handsontable. auto handsontable , (, viewportRowRenderingOffset: 70, viewportColumnRenderingOffset: 70).

+1

Source: https://habr.com/ru/post/1671170/


All Articles