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

[Solved] Set Appointment vertically in Day View

3 Answers 170 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Samir Patel
Top achievements
Rank 1
Samir Patel asked on 03 Jul 2009, 12:13 PM
Hi all,

How can i set the Vertical appointment on the Day view... I.e i have five items for any date, and when i change the view and enter in to the Day view..all five item showed me in the Horizontal ... How can i set it to the Vertical....

Please help me out...
Regards
Samir

3 Answers, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 03 Jul 2009, 02:42 PM
Hello Samir,

This scenario is not supported by RadScheduler, since displaying appointments (except all-day appointments) vertically in day view or week view for that matter is tied to their start time and duration. Any other rearrangement of the current model will present false appointment chronology to the user.


Greetings,
Peter
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Samir Patel
Top achievements
Rank 1
answered on 06 Jul 2009, 01:15 PM
Hello,

To show the appoint ment vertically, please let me my following logic will work?

Instead pf putting "Day view", when user click on "Showmore" link from the Month view, open "Time line" view, and as in time line view (all the appoint ments are displyed vertically by default) , so will it be possible, to link "Show more" to the "Time line view",
and if so , then can i rename the "Time line" title / change the Position (i.e after the "month" , i will put it first (before Day)).....

Regards
Samir
0
T. Tsonev
Telerik team
answered on 09 Jul 2009, 06:32 AM
Hi,

You can redirect the users to TimelineView by handling the NavigationCommand event:

protected void RadScheduler1_NavigationCommand(object sender, SchedulerNavigationCommandEventArgs e)
{
    if (e.Command == SchedulerNavigationCommand.SwitchToSelectedDay &&
        RadScheduler1.SelectedView == SchedulerViewType.MonthView)
    {
        e.Cancel = true;

        RadScheduler1.SelectedView = SchedulerViewType.TimelineView;
        RadScheduler1.SelectedDate = e.SelectedDate;
    }
}

Rearranging the view tabs is not supported at the moment, but this is a nice feature and we've added it to our to-do list.

Best wishes,
Tsvetomir Tsonev
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Scheduler
Asked by
Samir Patel
Top achievements
Rank 1
Answers by
Peter
Telerik team
Samir Patel
Top achievements
Rank 1
T. Tsonev
Telerik team
Share this question
or