-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
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
efficient selection of multiple files #6029
Comments
I would like to add, that it would be nice to clear the selection with |
good point, added it to the acceptance criteria. background (fyi): clearing via |
Maybe:
|
added that as well and re-structured the acceptance criteria into |
User stories
Acceptance criteria
navigation
arrows up/down
for moving up and down through the rows of the file list (don't cycle to the top when reaching the end, just stay there. similarly, don't cycle to the end when reaching the top, just stay there).selection
space bar
: select / deselect the currently highlighted rowshift
+arrows up/down
: add a series of rowscmd/ctrl
+a
: select all rows. if paginated: only the items of the current page. our selection model doesn't span across pages.esc
: deselect all rowscmd/ctrl
+ left click on a row: add/remove the clicked item to/from the current selection model (i.e. toggle selection state of the clicked row)shift
+ left click on a row: add the clicked row and the series of rows towards the most recently clicked row to the current selection model. (this will require to memorize the most recently clicked item). note that this doesn't allow to remove items from the selection model.The text was updated successfully, but these errors were encountered: