4 Answers, 1 is accepted
0
Accepted
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.
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
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.
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.
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.