join 3 or more table in tablecontrol.

Issue #15 closed
kuldeep_gill created an issue

in tiwulfx demo example there is a way to join two table. and that is quite good. but in my project i need to join 3-4 tables. so is there a way to do so? and jdk 8 early version causes skinbase class problem in datecontrol in EDIT_Mode

Comments (6)

  1. Panemu Ind repo owner

    Take a look at TiwulFX Demo project, FrmMasterDetail.java.

    tblInsurance.selectedItemProperty().addListener(new InvalidationListener() {
            @Override
            public void invalidated(Observable observable) {
                if (tblInsurance.getMode() == TableControl.Mode.READ) {
                    tblPerson.reloadFirstPage();
                }
            }
    });
    
  2. kuldeep_gill reporter

    Thank you very much, sir. is there a solution for SkinBase class Problem with early version of jdk 8 ?

  3. Panemu Ind repo owner

    Same problem is reported in Issue #16. TiwulFX is not compatible with Java 8. Porting to Java 8 is in progress.

  4. Log in to comment