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