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

How to read start and end date when view has changed

4 Answers 92 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Tobe
Top achievements
Rank 1
Tobe asked on 21 Apr 2010, 01:05 AM
After the calendar view has changed from day/week/month, what event/property will allow me to read the updated displayed date range (start date, end date) on the scheduler.

4 Answers, 1 is accepted

Sort by
0
Accepted
T. Tsonev
Telerik team
answered on 23 Apr 2010, 10:52 AM
Hi Tobe,

You should subscribe to the NavigationComplete event. The display range can be obtained from the VisibleRangeStart and VisibleRangeEnd properties.

I hope this helps.

Sincerely yours,
Tsvetomir Tsonev
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
Tobe
Top achievements
Rank 1
answered on 04 May 2010, 04:27 AM
This works, however any control on the page I try to update after this event has fired is not displayed on the page.  Is this event occuring after the page render event?


0
Peter
Telerik team
answered on 05 May 2010, 04:26 PM
Hi Tobe,

Are you using RadAjaxManager? If yes, then please make sure that you configure the ajax settings so that RadScheduler updates the control that you need.

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="RadScheduler1">
                <UpdatedControls>
                     
                    <telerik:AjaxUpdatedControl ControlID="MyControl">
                    </telerik:AjaxUpdatedControl>
                      
                </UpdatedControls>
            </telerik:AjaxSetting>           
        </AjaxSettings>
    </telerik:RadAjaxManager>

If your case is different, please provide more details.

Kind regards,
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
Tobe
Top achievements
Rank 1
answered on 06 May 2010, 04:33 PM
Thanks, this worked.
Tags
Scheduler
Asked by
Tobe
Top achievements
Rank 1
Answers by
T. Tsonev
Telerik team
Tobe
Top achievements
Rank 1
Peter
Telerik team
Share this question
or