Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Multiple People’s Schedules (Read 3421 times)
Billy Fish
Guest


Multiple People’s Schedules
Feb 20th, 2006 at 8:38pm
Print Post  
I have stumbled across your component and it looks great and obviously with any bit of software the look is very important. Yet, I have one big question.

Can I display multiple people’s schedules in a timetable style format?

i.e. Secretary needs to schedule appointments for : Bob, Mike & John seeing all on a single screen.

Any thoughts ??
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Multiple People’s Schedules
Reply #1 - Feb 21st, 2006 at 5:37am
Print Post  
Hi,

Define the people in the schedule as shown below:

Code
Select All
Contact c;

c = new Contact();
c.FirstName = "Bob";
calendar.Schedule.Contacts.Add(c);

c = new Contact();
c.FirstName = "Mike";
calendar.Schedule.Contacts.Add(c);

c = new Contact();
c.FirstName = "John";
calendar.Schedule.Contacts.Add(c);
 



After some contacts are available in the Schedule, select the ones to be displayed in the calendar by adding them to the Contacts collection of the Calendar control.

Code
Select All
calendar.Contacts.Add(calendar.Schedule.Contacts[0]);
calendar.Contacts.Add(calendar.Schedule.Contacts[1]);
calendar.Contacts.Add(calendar.Schedule.Contacts[2]);
 



You could group the contact appointments in their distinct columns by setting GroupType as shown below:

Code
Select All
calendar.GroupType = GroupType.GroupByContacts;
calendar.CurrentView = CalendarView.Timetable;
calendar.TimetableSettings.VisibleColumns = 3;
 



I hope this helps,
Stoyan
  
Back to top
 
IP Logged
 
jeff
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 2
Joined: May 9th, 2006
Re: Multiple People’s Schedules
Reply #2 - May 9th, 2006 at 5:22pm
Print Post  
Is there a way for this to display in DayRange so I get 3 DayRanges showing?
  
Back to top
 
IP Logged
 
Meppy
God Member
*****
Offline


MindFusion support

Posts: 1783
Joined: Jul 20th, 2005
Re: Multiple People’s Schedules
Reply #3 - May 10th, 2006 at 6:00am
Print Post  
Unfortunately the DayRange view does not currently support grouping. If it is essential for you, we can add this feature in the next release.

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