You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, two-click range selection is only possible in <VDatePicker multiple="range" />.
Would it be possible to implement (in <VDatePicker multiple /> but also <VList select-strategy="leaf" />) the same UX offered by (for example) desktop file managers, where the following:
the user clicks on item i
the user clicks on item j while holding Shift key
results in a range selection of the items [i, i+1, ..., j-1, j]?
Pushing this idea further, there could also be a new selection strategy where:
clicking an item without modifiers performs single selection
clicking an item while holding Shift performs range selection
clicking an item while holding Cmd (macOS) or Ctrl (other clients 1) adds that item to the current selection (or removes it).
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Currently, two-click range selection is only possible in
<VDatePicker multiple="range" />
.Would it be possible to implement (in
<VDatePicker multiple />
but also<VList select-strategy="leaf" />
) the same UX offered by (for example) desktop file managers, where the following:i
j
while holding Shift keyresults in a range selection of the items
[i, i+1, ..., j-1, j]
?Pushing this idea further, there could also be a new selection strategy where:
Shift
performs range selectionCmd
(macOS) orCtrl
(other clients 1) adds that item to the current selection (or removes it).but I don't know how feasible would this be.
Current behaviour (
Shift
-click highlights text): Vuetify playgroundFootnotes
As far as I know,
Ctrl
-click is almost always equivalent to a right-click on macOS. ↩Beta Was this translation helpful? Give feedback.
All reactions