How to implement a Team Calendar (multiple users or resources) in Wisej FullCalendar?

0
0

Hello everyone,

We are currently using Wisej’s FullCalendar control for personal or single-user calendars (for example, Teachning plan where we select one teacher and display his schedule).
Now we would like to extend this to a Team Calendar, showing events from multiple users or resources at once.

Our goal:

  • Display a combined view of several persons (e.g., teachers) or resources (e.g., halls, rooms).

  • Optionally show parallel columns or clearly grouped events per team member.

  • Alternatively, allow toggling which users or teams are visible using filters.

Questions:

  1. Is there a built-in or recommended approach in Wisej FullCalendar to display multiple users or teams together?

  2. Can multiple event sources be combined and filtered dynamically to simulate a team overview?

Any advice or example implementation would be very helpful.
Thank you!

  • You must to post comments
0
0

We found the cause of the issue. We tried with Ressource from FullCalendar
In newer versions of Wisej-3-FullCalendar (starting from around v3.5.13 nad continued in Wisej-4), the class
Wisej.Web.Ext.FullCalendar.Resource was renamed to ResourceScheduler.

That’s why projects that used new Resource() stopped compiling after the update.
The fix is simply to replace the old class and property with the new ones:

fullCalendar1.ResourceSchedulers = new Wisej.Web.Ext.FullCalendar.ResourceScheduler[]
{
new Wisej.Web.Ext.FullCalendar.ResourceScheduler { Id = “U1”, Title = “Anna Müller” },
new Wisej.Web.Ext.FullCalendar.ResourceScheduler { Id = “U2”, Title = “Ben Huber” }
};

Everything else —  works the same as before.

So the issue wasn’t missing references, just a renamed class in the newer builds.

  • You must to post comments
0
0

It might be possible with a custom view. FullCalendar is a third party extension, not created by us. You may find it helpful to read their documentation here: https://fullcalendar.io/docs

Can you provide more details- a link to something similar or a screenshot of what you are trying to do?

 

-Julie

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.