I’m using different assigned colors for events on multiple calendars. When I move an event between calendars I need the color to change with it.
This updates the calendar event in the calendarSaveData.ashx.vb
Dim eventToUpdate = data.Calendar_tbls.SingleOrDefault(Function(ev) ev.id = action.SourceId)
DHXEventsHelper.Update(eventToUpdate, changedEvent, New List(Of String)() From {"id"})
My work around so far has been to change it after it submits the change but that requires that I manual refresh the calendar.
Is there a better way to do this?