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

Timeline View and All Appointments

3 Answers 99 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Deepak Jain
Top achievements
Rank 1
Deepak Jain asked on 16 Jun 2010, 01:31 PM
I want to display the all appointments in timeline view. As per the support I made a changes to display the 1 year appointments in Timeline view.


<
TimelineView UserSelectable="true" SlotDuration="365" NumberOfSlots="1" 
HeaderDateFormat="yyyy" ColumnHeaderDateFormat="yyyy" /> 

When I change the date (Back Year) from calendar it does not show the past year appointments. I cannot attach the code due to forum restrictions.

Is there any workaround for this? or can I disable the calendar when scheduler view is Timeline

Thanx.

-Deepak

3 Answers, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 17 Jun 2010, 03:08 PM
Hi Deepak,

It might be better for this case to use the following kb to display all appoinments in GridView:
http://www.telerik.com/support/kb/aspnet-ajax/scheduler/how-to-display-all-radscheduler-appointments-in-gridview.aspx


Best wishes,
Peter
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Deepak Jain
Top achievements
Rank 1
answered on 18 Jun 2010, 06:23 AM
Can is it possible to disable the calendar during the timeline view. So there is no date range available for user and only upcoming year all appointments will be displayed
0
Peter
Telerik team
answered on 18 Jun 2010, 09:57 AM

You can hide those elements from the header with jQuery:
function pageLoad() {
           var scheduler = $find('<%=RadScheduler1.ClientID %>');
           var $ = $telerik.$;
           if (scheduler.get_selectedView() == Telerik.Web.UI.SchedulerViewType.TimelineView) {
               $(".rsPrevDay").hide();
               $(".rsNextDay").hide();
               $(".rsDatePickerActivator").hide();
           }
       }



Greetings,
Peter
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Scheduler
Asked by
Deepak Jain
Top achievements
Rank 1
Answers by
Peter
Telerik team
Deepak Jain
Top achievements
Rank 1
Share this question
or