I’m working on a vacation planner for my team. Each user will have an account, and all events will be owned by a user.
My question is about how I can visually make this work. I would want each user’s events to be evident (coloring?) and would also like the ability to filter for the user’s own events.
- For colors, I figure I can the
event_class
to generate the class based on the user, then use CSS to map to colors. But wondering if something else might make more sense. - For filtering, I see how to do event filtering with the
filter_<view>
but I would want to do the filtering more globally and based on a UI control somewhere on the calendar; like a “Only Mine” checkbox or something.
Thoughts?