I'm developing a multi-user version of the jQuery plugin fullcalendar. Each user has a unique color. You change user in a drop-down. So, I can assign a color for the users existing events.
The problem is when you render a new event, the color assigned to the 'eventColor' property of fullCalendar on initialize is not changed.
Let's say user 1 has, for example blue events. I initialize the fullCalendar with 'eventColor' blue. When and I change to user 2 who has yellow events, the rendered event still shows a blue event. I would like the event to be yellow from the moment I start dragging until i release the event.
I tried changing the event rendering color with $('.calendar').fullCalendar('option', 'eventColor', 'NEW_COLOR_HERE'); but that doesn't work.
Anyone found themselves in the same situation and came up with the solution? :)