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

ToggleGroup.selectedToggleProperty listener does not receive all changes

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Cannot Reproduce
    • Icon: P4 P4
    • 8
    • fx2.0
    • javafx
    • presidio Build-Number: 213

      For the visual tool, I need 2 buttons (run and stop) that are completely exclusive.
      I use 2 ToggleButtons within a ToggleGroup.
      The ToggleGroup handles the fact that we can have only 1 button selected at a time but I need the reverse as well : only 1 button unselected at a time.
      So when the run button is selected and the user clicks again on the button, it needs to stay selected.

      To do that, I've added the following code :
              toggleGroup.selectedToggleProperty().addListener(new ChangeListener<Toggle>() {
                  public void changed(ObservableValue<? extends Toggle> observable, Toggle oldValue, Toggle newValue) {
                      if (newValue == null) {
                          toggleGroup.selectToggle(oldValue);
                      }
                  }
              });
      but it works half the time :
      I click on the run button, then click on it again (OK, the button keeps selected), then click on it again (KO, the button becomes unselected).

      Attached simple test to reproduce.

            jgiles Jonathan Giles
            slions Sandra Lions-piron
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: