dhtmlxscheduler Events for different Calendars?

Hi,



I am evaluting this component, and looking to see if the scheduler supports multiple calendar, I noticed in your snapshots that the events are rendered with different color, hinting at such functionality, but couldn’t see anything in the doc or source, perhaps I missed it. Please let me know. Thanks,



MLin.

Please check attached sample, it shows how component can be used with multiple calendars
Documentation, about custom styling is attached as well.

dhtmlxscheduler_custom_styling.mht (124 KB)
shared_events.ZIP (55.3 KB)

Great. Thanks for your reply.

Is there a way to toggle on and off the event feeds for users 1 and 2 via some sort of checkbox?

Hello,

Do you want to filter already loaded events?

scheduler.filter_day = scheduler.filter_week = schediler.filter_month = function(id, ev) { if (ev.some_property) return false; // event won't be displayed return true; // event will be displayed }
Kind regards,
Ilya