List of usage examples for javafx.scene.control TextInputControl disableProperty
public final BooleanProperty disableProperty()
From source file:ninja.javafx.smartcsv.fx.validation.ValidationEditorController.java
private void initTextInputControl(TextInputControl rule, CheckBox ruleEnabled) { rule.disableProperty().bind(ruleEnabled.selectedProperty().not()); ruleEnabled.selectedProperty().addListener((observable, oldValue, newValue) -> { if (!newValue) { rule.setText(""); }// w w w . j ava2s .c o m }); }