| @@ -66,6 +66,9 @@ public class MainController { | |||||
| @FXML | @FXML | ||||
| private SplitPane fallOverview; | private SplitPane fallOverview; | ||||
| @FXML | |||||
| private ListView lvFall; | |||||
| private Callback<Class<?>, Object> controllerFactory = clazz -> { | private Callback<Class<?>, Object> controllerFactory = clazz -> { | ||||
| if(clazz.equals(MainController.class)) { | if(clazz.equals(MainController.class)) { | ||||
| @@ -173,7 +176,9 @@ public class MainController { | |||||
| private void initialize(){ | private void initialize(){ | ||||
| fallOverview.disableProperty().bind(patientTablesController.selectedPatientProperty().isNull()); | fallOverview.disableProperty().bind(patientTablesController.selectedPatientProperty().isNull()); | ||||
| cmbUserChoose.itemsProperty().bind(this.mitarbeiterProperty()); | cmbUserChoose.itemsProperty().bind(this.mitarbeiterProperty()); | ||||
| patientTablesController.selectedPatientProperty().addListener((observableValue,oldValue,newValue)-> { | |||||
| //Load to Fall lv. | |||||
| }); | |||||
| } | } | ||||