javascript - FullCalendar - How to increase the time in minutes of an event in 'fc-time' with append when user is resizing? -
i trying increase time in minutes when user resizing event . need put in class .fc-time first line . how way i´m doing doesnt work .
im using function eventresize()
eventresize(event, delta, revertfunc, jsevent, ui, view) { .... const durationeventinminutes =calcdurationminutes(event.start,event.end); $(this).find('fc-time').append(` ( ${durationeventinminutes} )`); }
if put console log in $(this).find('fc-time') see have change value of event . show that: 08:00-10:30 (3h30m) function returns value, event doesn't update in .fc-time doesn't show anything. have handle this? i´m doing wrong? can me?
Comments
Post a Comment