TonyGermaneri / canvas-datagrid

Canvas based data grid web component. Capable of displaying millions of contiguous hierarchical rows and columns without paging or loading, on a single canvas element.
BSD 3-Clause "New" or "Revised" License
1.44k stars 187 forks source link

Allow adding new rows or columns on paste #553

Open romanstetsyk opened 1 year ago

romanstetsyk commented 1 year ago

Fixes issue #552.

Changes proposed in this pull request:

https://user-images.githubusercontent.com/25715951/230503165-b5f32a6e-8dbe-44c4-96be-8c94ae87186e.mov

This is slow for big datasets because a) .addRow() calls .refresh() b) on each cell pasted .selectCell() is called. So there's plenty of room for optimization.