dlsc-software-consulting-gmbh / PickerFX

A small framework for JavaFX that provides picker (touch) controls.
Apache License 2.0
24 stars 4 forks source link

ReadOnly property does not work #3

Open igor11191708 opened 5 years ago

igor11191708 commented 5 years ago

ReadOnly property does not work

dlemmermann commented 5 years ago

Of which control? What is the expected result vs. the actual result?

igor11191708 commented 5 years ago

IntegerPicker integerPicker = new IntegerPicker(); integerPicker.setReadOnly(true); <- does not work

It`s declared as public property for any pickers at class Picker It seems like you just forgot to bind it to class Segment<T, S>.

this.readOnlyProperty().bind(picker.readOnlyProperty());

dlemmermann commented 5 years ago

Looks right, please submit a PR.