nimakro
03/06/2017, 3:31 PMbutton(graphic = FontAwesomeIconView(FontAwesomeIcon.ARROW_RIGHT)) { addClass(ApplicationStyle.diffNavButton) disableProperty().bind(model.hasNextRevision)}
where I want to disable the button if there is no next revision,
my model has a BooleanProperty but when I am calling model.hasNextRevision
I get a Property<Boolean>
on which I can't call .not()
. What em I am missing here?