This is a migrated thread and some comments may be shown as answers.

Radscheduler along with Radcalender

3 Answers 95 Views
Scheduler and Reminder
This is a migrated thread and some comments may be shown as answers.
Divya
Top achievements
Rank 1
Divya asked on 24 May 2011, 07:13 AM
Hi,

            I am using Radcalender and a radschedular i have 3 issues regarding these


1)In the radcalender if i select the full week then the radscheduler shld show the full week details as in screenshot.Please refer screenshot(schedular.jpg) .How can i do like this


2)Along with radscheduler i am using radschedulernavigator in that i want to remove a comobox showing the details og GMT timings of different countries  please refer screenshot(navigator.jpg)

3)How can i show the multiple users appointments in the schdular for example refer screenshot(multiple users)

Thanks
Divya

3 Answers, 1 is accepted

Sort by
0
Accepted
Ivan Todorov
Telerik team
answered on 25 May 2011, 04:47 PM
Hello Divya,

Thank you for your questions.

To achieve the first of your requirements, you should use RadCalendar with AllowMultipleSelect, AllowRowHeaderSelectors, ShowRowHeaders properties set to true. You should also subscribe to RadCalendar's SelectionChanged event and handle it the following way:
private void radCalendar1_SelectionChanged(object sender, EventArgs e)
{
    if(this.radCalendar1.SelectedDates.Count == 0)
        return;
 
    DateTime[] selectedDates = this.radCalendar1.SelectedDates.ToArray();
    Array.Sort(selectedDates);
 
    this.radScheduler1.ActiveView.StartDate = selectedDates[0];
}

In regards to your second requirement: in order to hide the timezone combo, you should set the following property:
this.radSchedulerNavigator1.SchedulerNavigatorElement.TimeZonesDropDown.Visibility = ElementVisibility.Collapsed;

I am not sure I understand your third requirement. From what I understand, you want to assign multiple resources to a single appointment. If this is correct, then you can check this knowledge base article. If this is not what you desire, please provide me with more details about this requirement, so I can provide you with adequate answer.

I hope you find this useful. Feel free to contact me if you have any further questions.

Regards,
Ivan Todorov
the Telerik team
Q1’11 SP1 of RadControls for WinForms is available for download; also available is the Q2'11 Roadmap for Telerik Windows Forms controls.
0
Divya
Top achievements
Rank 1
answered on 26 May 2011, 06:03 AM
Hi
             First and second requirements are fine working .But the third issue is not yet so i am explaining u some  details


Instead of user coming up and days down i want like days up and the users down divided
like
 22        23       24       25        26      27        28
A B C   A B C   A B C   A B C   A B C   A B C  ABC

this wany i want instead of
                 A                                     B                                             C        
22 23 24 25 26 27 28       22 23 24 25 26 27 28          22 23 24 25 26 27 28

 

ABC  are users

0
Ivan Todorov
Telerik team
answered on 27 May 2011, 08:44 AM
Hello Divya,

Currently, RadScheduler does not have the option of showing resources for each date, hence resources can only be shown as they are on your screen shot. If more people ask for such functionality, we may consider implementing it in one of our next releases.

Feel free to contact me if you have any further questions.

Regards,
Ivan Todorov
the Telerik team
Q1’11 SP1 of RadControls for WinForms is available for download; also available is the Q2'11 Roadmap for Telerik Windows Forms controls.
Tags
Scheduler and Reminder
Asked by
Divya
Top achievements
Rank 1
Answers by
Ivan Todorov
Telerik team
Divya
Top achievements
Rank 1
Share this question
or