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.42k stars 184 forks source link

On copy, only include data from rows that are in the actual selection #556

Closed mdebrauw closed 1 year ago

mdebrauw commented 1 year ago

This PR solves an issue when copying data while having rows above the selection that aren't selected. You can see that rows above the selection lead to new lines in the textString that is put on the clipboard:

2023-04-28 17 27 37

Null values in the sparse array returned by getSelectedData are filtered out before data is transformed to text, html, csv or json string.