Hello!
Within the $(“#scheduler”).jqxScheduler({ … }); I have the renderAppointment: function(data) {…}, which works fine during loading the data.
In the “$(“#scheduler”).on(‘appointmentDelete’, function (event) {..}); and also in the “appointmentAdd” and “appointmentChange” -Functions I have a function, that is fireing an mysql update for the selected event. This update return a new value, what I put into the appointment-data with $(“#scheduler”).jqxScheduler(‘beginAppointmentsUpdate’);.
After the setAppointmentProperty i do a $(“#scheduler”).jqxScheduler(‘endAppointmentsUpdate’); and then the renderAppointment: function(data) {…} is not firing.
Should there be done a manual refresh or something similar?
Thanks!