Example usage for javafx.scene.control Spinner disableProperty

List of usage examples for javafx.scene.control Spinner disableProperty

Introduction

In this page you can find the example usage for javafx.scene.control Spinner disableProperty.

Prototype

public final BooleanProperty disableProperty() 

Source Link

Document

Defines the individual disabled state of this Node .

Usage

From source file:ninja.javafx.smartcsv.fx.validation.ValidationEditorController.java

private void initSpinner(Spinner rule, CheckBox ruleEnabled) {
    rule.disableProperty().bind(ruleEnabled.selectedProperty().not());
    ruleEnabled.selectedProperty().addListener((observable, oldValue, newValue) -> {
        if (!newValue) {
            rule.getValueFactory().setValue(0);
        }//ww  w .  j  av  a  2  s  .c  om
    });
}