i want to edit this pop up that appears when i perform right click on appointment, so that i can add more textField to get some more informations. I use Agenda from JFXtras library and i do not know how to edit the pop up.
I found how to do it, i've just added this code :
agenda.setEditAppointmentCallback( (appointment) -> {
editPopUp();
return null;
});
on agenda initialization and editPopUp() call an function that create the pop up that i wanted to show