I working on calendar with agenda so i use JFXtras library and there examples. And i need some help. Where i can save added appointment in JFXtras? I don't know anything about MySQL, is there any other option? Is it possible to do something with txt file, but how i can get info for exactly selected appointment?
Appointment[] lTestAppointments = new Appointment[]{
new Agenda.AppointmentImplLocal()
.withStartLocalDateTime(LocalDateTime.of(lTodayLocalDate, LocalTime.of(8, 00)))
.withEndLocalDateTime(LocalDateTime.of(lTodayLocalDate, LocalTime.of(11, 30)))
.withSummary("A")
.withDescription("A much longer test description")
.withAppointmentGroup(lAppointmentGroupMap.get("group07"))
..............................................................................