This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import javafx.beans.value.ChangeListener | |
| import javafx.beans.value.ObservableValue | |
| import org.apache.commons.lang.StringUtils | |
| // model | |
| @FXBindable String amount1 | |
| @FXBindable String amount2 | |
| // view | |
| textField(id: 'amount1', text: bind(model.amount1Property)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import javafx.beans.value.ChangeListener | |
| import javafx.beans.value.ObservableValue | |
| import org.apache.commons.lang.StringUtils | |
| // model | |
| @FXBindable String amount1 | |
| // view | |
| textField(id: 'amount1', text: bind(model.amount1Property)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import javafx.beans.value.ChangeListener | |
| import javafx.beans.value.ObservableValue | |
| import org.apache.commons.lang.StringUtils | |
| // model | |
| @FXBindable String amount1 | |
| // view | |
| textField(id: 'amount1', text: bind(model.amount1Property)) |
NewerOlder