Juan
11/12/2017, 5:10 PMkastork
11/12/2017, 5:13 PMJuan
11/12/2017, 5:28 PMamanda.hinchman-dominguez
11/12/2017, 7:44 PMJeff Thomas
11/12/2017, 8:14 PMcarlw
11/12/2017, 8:15 PMamanda.hinchman-dominguez
11/12/2017, 8:17 PMamanda.hinchman-dominguez
11/12/2017, 8:18 PMamanda.hinchman-dominguez
11/12/2017, 8:18 PMcarlw
11/12/2017, 8:25 PMamanda.hinchman-dominguez
11/12/2017, 8:38 PMamanda.hinchman-dominguez
11/12/2017, 9:06 PMamanda.hinchman-dominguez
11/12/2017, 9:06 PMScreen Shot 2017-11-12 at 4.06.04 PM.png▾
amanda.hinchman-dominguez
11/12/2017, 9:09 PMamanda.hinchman-dominguez
11/12/2017, 9:11 PMwithout datagrid padding▾
amanda.hinchman-dominguez
11/12/2017, 9:12 PMJuan
11/12/2017, 9:26 PMamanda.hinchman-dominguez
11/12/2017, 9:51 PMamanda.hinchman-dominguez
11/12/2017, 9:51 PMamanda.hinchman-dominguez
11/12/2017, 9:53 PMamanda.hinchman-dominguez
11/12/2017, 9:53 PMJuan
11/12/2017, 9:55 PMshodan45
11/12/2017, 10:51 PMshodan45
11/12/2017, 10:55 PMkastork
11/12/2017, 11:22 PMplebian
11/13/2017, 12:34 AMReadOnlyListProperty
that's bound to a mutable list?abhinay
11/13/2017, 5:37 AMReadOnlyListWrapper
and pass the list into it.abhinay
11/13/2017, 5:37 AMObservableList<String> list = FXCollections.observableArrayList("A", "B", "C");
ReadOnlyListProperty<String> readOnlyListProperty = new ReadOnlyListWrapper<>(list);
edvin
11/13/2017, 10:45 AMfoo.bind(fooModel.barProperty)
, that should set things up correctly. Also consider using the typesafe builders instead of FXML. Instead of the Wizard, I think you should just traverse between Views using the replaceWith
function, and keep total control of what's being displayed on screen. If you can give a small example of how two screens would look like I can show you how to deal with this.