Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8092021

JavaFX Spinner control: add mouse wheel support

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P4 P4
    • tbd
    • 8u40
    • javafx
    • JavaSE 8u40 64 bit, Mac OS X 10.10

      The new Spinner control introduced in JavaFX 8u40 does not provide mouse wheel support for easy scrolling through the possible values.

      This can be added quite easily, but this should work by default.
      Code:

              spinner.setOnScroll(event -> {
                  if (event.getDeltaY() > 0) {
                      spinner.decrement();
                  } else if (event.getDeltaY() < 0) {
                      spinner.increment();
                  }
              });

            Unassigned Unassigned
            ssaringjfx Stefan Saring (Inactive)
            Votes:
            3 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Imported: