Browse Source

Test MySql jdbc treiber

hapi
Johannes Oehm 10 years ago
parent
commit
a655a36d96
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      src/main/java/de/uniluebeck/mi/projmi6/controller/MainController.java

+ 6
- 1
src/main/java/de/uniluebeck/mi/projmi6/controller/MainController.java View File

@@ -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.
});


} }




Loading…
Cancel
Save