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
ag-Grid supports keyboard shortcuts like Ctrl-C Copy but not Ctrl-A Select-all.
It can be implemented in an application by adding a grid keyDown event handler:
keyDown(evt) { if (evt.ctrlKey && evt.key == 'a') { gridModel.agAPi.selectAllFiltered(); } }
See related selModel issue #1150.
The text was updated successfully, but these errors were encountered:
I took this and implemented it here, but am finding that our selModel's attempt to do selectAll() is still unbelievably slow. I thought we fixed this?
UPDATE: The selection fixes works great -- had somehow not pulled the new code locally
Sorry, something went wrong.
Fixes #1149
b34a3f5
0b670a1
lbwexler
No branches or pull requests
ag-Grid supports keyboard shortcuts like Ctrl-C Copy but not Ctrl-A Select-all.
It can be implemented in an application by adding a grid keyDown event handler:
See related selModel issue #1150.
The text was updated successfully, but these errors were encountered: