Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Timetable mode and resources (Read 2915 times)
fractal07
YaBB Newbies
*
Offline


I Love MindFusion!

Posts: 28
Location: France
Joined: Mar 13th, 2017
Timetable mode and resources
Jan 5th, 2018 at 10:57am
Print Post  
Hello,
My C# winforms app displays a daily timetable with resources (employees) but each day, employees can be different. I manage appointments for all resources but is there a simple way to select (filter?) which resource I can display when I navigate to the next/prev day (cf. pictures below)?
Kind regards and congratulation for your great products!
  

FirstDay.jpg ( 39 KB | 220 Downloads )
FirstDay.jpg
NextDay.jpg ( 40 KB | 202 Downloads )
NextDay.jpg
Back to top
 
IP Logged
 
Meppy
God Member
*****
Offline


MindFusion support

Posts: 1783
Joined: Jul 20th, 2005
Re: Timetable mode and resources
Reply #1 - Jan 5th, 2018 at 1:16pm
Print Post  
Hi,

Thank you for your feedback.

There is no automatic way to select specific resources for different days. However, you can easily do this yourself by selecting the resources to group by when the current day is changed. For example, if you group by contacts, you can use the following code to select different resources:

Code
Select All
calendar.Contacts.Clear();
calendar.Contacts.Add(contact1ForTheNewDay);
calendar.Contacts.Add(contact2ForTheNewDay);
... 



To get notified when the day is changed through the navigation buttons inside the Calendar control, use the Calendar.VisibleDateChanged event.

Regards,
Meppy
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint