Open jannat412 opened 4 years ago
I am trying to update title of the events but there is no update methods on it.
I want to add this on schedulerData.js
updateEvent(event, newSlotId, newSlotName, newTitle, newStart, newEnd){ this._detachEvent(event); if(this.isEventPerspective) { event.groupId = newSlotId; event.groupName = newSlotName; } else event.resourceId = newSlotId; event.end = newEnd; event.start = newStart; event.title = newTitle; this._attachEvent(event); this._createRenderData(); }
You will have to update the required event and then call setEvents(events) function
setEvents(events)
I am trying to update title of the events but there is no update methods on it.
I want to add this on schedulerData.js
updateEvent(event, newSlotId, newSlotName, newTitle, newStart, newEnd){ this._detachEvent(event); if(this.isEventPerspective) { event.groupId = newSlotId; event.groupName = newSlotName; } else event.resourceId = newSlotId; event.end = newEnd; event.start = newStart; event.title = newTitle; this._attachEvent(event); this._createRenderData(); }