javajavafxappointmentjfxtras

How can I add an action Listener onto an appointment in an agenda (JFXtras Agenda)


How can I add an action Listener so that when an appointment on an agenda is clicked a new window with more details on that particular clicked appointment opens.


Solution

  • lAgenda.selectedAppointments().addListener(new ListChangeListener< Appointment >() {
         public void onChanged(Change<? extends Appointment> c) {
             while (c.next()) {
                 if (c.wasPermutated()) {
                     for (int i = c.getFrom(); i < c.getTo(); ++i) {
                          //permutate
                     }
                 } else if (c.wasUpdated()) {
                          //update item
                 } else {
                     for (Appointment a : c.getRemoved()) {
                     }
                     for (Appointment a : c.getAddedSubList()) {
                         printAppointment(a);
                     }
                 }
             }
         }
     });
    

    Then print appointments:

    private void printAppointment(Appointment a) {
        System.out.println(a.getSummary());
        System.out.println(a.getDescription());
    }