onPaste does not fill all selected rows
See original GitHub issueCurrently, I am working on a table with a company that expects almost identical Excel behavior. One missing thing is copying and pasting one row into multiple selected rows. Is this a feature that you intend to add or is this something you might delegate to devs using your library to implement themselves due to some technical complexity/edge cases?
Also if I am not mistaken, onPaste
is currently working with onCellEdited
, is this something that can be moved to onCellsEdited
? That would greatly improve DX
Issue Analytics
- State:
- Created a year ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
Multiple Cell Selection (not full row)
Multiple Cell Selection (not full row). My users need to select cells rather than entire rows, as they come from an MS Access...
Read more >HTMLElement: paste event - Web APIs | MDN
The paste event fires when the user initiates a paste action through the browser's user interface.
Read more >Issues · glideapps/glide-data-grid - GitHub
Glide Data Grid is a no compromise, outrageously react fast data grid with rich rendering, first class accessibility, and full TypeScript support.
Read more >React Data Grid: Clipboard - AG Grid
Press keys Ctrl + V while focus in on the grid with a single cell selected. The paste will then proceed starting at...
Read more >Copy/Paste from Excel to a web page - Stack Overflow
You don't lose the delimiters, the cells are separated by tabs ( \t ) and rows by newlines ( \n ) which might...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Implementation proposal:
onCellsEdited
was updated in 5.0.1 to always trigger, you can not implementonCellEdited
at all if you like.onCellEdited
will always trigger ifonCellsEdited
triggered.