Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Multiple resources in timetable view (Read 2591 times)
john6630
Junior Member
**
Offline


I love YaBB 1G - SP1!

Posts: 74
Joined: Sep 20th, 2010
Multiple resources in timetable view
Jan 20th, 2012 at 4:07pm
Print Post  
Hi Meppy,
I have a plant schedule for which I want to display a timetable view. On each day I want to put multiple machines. I want each machine to have its own column not have all machines on one column with collisions enabled. Can this be done? If so, how?

Thanks,
John
  
Back to top
 
IP Logged
 
Meppy
God Member
*****
Offline


MindFusion support

Posts: 1783
Joined: Jul 20th, 2005
Re: Multiple resources in timetable view
Reply #1 - Jan 23rd, 2012 at 6:30am
Print Post  
You can define the machines as resources, then enable grouping in the control:

Code
Select All
Resource machine1 = new Resource();
machine1.Name = "machine 1";
calendar1.Schedule.Resources.Add(machine1);

Resource machine2 = new Resource();
machine2.Name = "machine 2";
calendar1.Schedule.Resources.Add(machine2);

calendar1.Resources.Add(machine1);
calendar1.Resources.Add(machine2);
calendar1.GroupType = GroupType.GroupByResources; 



Now, the appointments associated with each machine will be displayed in their own column.

Regards,
Meppy
  
Back to top
 
IP Logged
 
john6630
Junior Member
**
Offline


I love YaBB 1G - SP1!

Posts: 74
Joined: Sep 20th, 2010
Re: Multiple resources in timetable view
Reply #2 - Jan 24th, 2012 at 3:01am
Print Post  
Hi Meppy,
Thank you for your speedy reply. I will try your suggestion and post more if I have a problem.

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