Skip to content
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

Manipulate picker columns with mouse scroll wheel #15505

Closed
WhatsThatItsPat opened this issue Sep 7, 2018 · 3 comments
Closed

Manipulate picker columns with mouse scroll wheel #15505

WhatsThatItsPat opened this issue Sep 7, 2018 · 3 comments
Labels
desktop Desktop related issues package: core @ionic/core package type: feature request a new feature, enhancement, or improvement

Comments

@WhatsThatItsPat
Copy link

WhatsThatItsPat commented Sep 7, 2018

Feature Request

Describe the Feature Request
Add the ability to manipulate picker columns with the mouse scroll wheel. The dials are hard to use on desktop when using a mouse. You can click through them two steps at a time, or you can awkwardly click and drag them.

Additional Context
Also mentioned here, but thought it deserved its own issue.

@ionitron-bot ionitron-bot bot added the triage label Sep 7, 2018
@Ionitron Ionitron added the ionitron: v3 moves the issue to the ionic-v3 repository label Nov 29, 2018
@imhoffd imhoffd added enhancement and removed ionitron: v3 moves the issue to the ionic-v3 repository labels Nov 29, 2018
@ionitron-bot ionitron-bot bot removed the triage label Nov 29, 2018
@brandyscarney brandyscarney added type: feature request a new feature, enhancement, or improvement and removed enhancement labels Nov 29, 2018
@brandyscarney brandyscarney added this to the Ionic for Desktop milestone Apr 4, 2019
@brandyscarney brandyscarney added the package: core @ionic/core package label Jun 5, 2019
@thomaslecoeur
Copy link

For now, I've been detecting the platform and display the IonDatetime component or an IonInput type="date", which is way more user friendly than the scrollable panel.

{isPlatform('mobile') ? (
  <IonDatetime
    onIonChange={(e) => console.log(new Date(e.detail.value!))}
  />
) : (
  <IonInput
    type="date"
    onIonChange={(e) => {
      console.log(new Date(e.detail.value!));
    }}
  />
)}

@liamdebeasi
Copy link
Contributor

Hi everyone,

I am going to roll this into #24905. We have a new picker that we are using internally with ion-datetime. We would like to use this as the basis for the inline picker. One of the benefits of this picker is it can be manipulated with a mouse scroll wheel, which should resolve the issue reported here. Please follow the linked thread for updates.

@liamdebeasi liamdebeasi closed this as not planned Won't fix, can't repro, duplicate, stale Jan 4, 2023
@ionitron-bot
Copy link

ionitron-bot bot commented Feb 3, 2023

Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out.

@ionitron-bot ionitron-bot bot locked and limited conversation to collaborators Feb 3, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
desktop Desktop related issues package: core @ionic/core package type: feature request a new feature, enhancement, or improvement
Projects
None yet
Development

No branches or pull requests

6 participants