We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bulk editing grid data.
We can create a prop cellRangeSelection to handle the selection and copy-paste actions. Here’s an example of how you might set it up (already available in legacy versions of https://github.com/adazzle/react-data-grid):
<DataGrid cellRangeSelection={{ onStart: (args) => console.log('Selection started:', args), onUpdate: (args) => console.log('Selection updated:', args), onComplete: (args) => console.log('Selection completed:', args) }} />
The text was updated successfully, but these errors were encountered:
this is something you're gonna have to implement yourself.
Sorry, something went wrong.
No branches or pull requests
Feature:
Use case:
Bulk editing grid data.
Proposed solution:
We can create a prop cellRangeSelection to handle the selection and copy-paste actions. Here’s an example of how you might set it up (already available in legacy versions of https://github.com/adazzle/react-data-grid):
<DataGrid
cellRangeSelection={{
onStart: (args) => console.log('Selection started:', args),
onUpdate: (args) => console.log('Selection updated:', args),
onComplete: (args) => console.log('Selection completed:', args)
}}
/>
The text was updated successfully, but these errors were encountered: