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

[Solved] Visible issue for Scheduler

1 Answer 85 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Michael Tao
Top achievements
Rank 1
Michael Tao asked on 27 Nov 2009, 06:50 AM

Hi:

  In my current project, a scheduler control is displayed in the page. However, it seems the page will be showed in more than 5 seconds. Hence i set the scheduler as invisible initially and then set it visible in the runtime. But the control will be showed 3-5 seconds after the scheduler.visible = true and the relevant databinding operation.

  Now what i want to know is which event will be triggered after the scheduler is showed or the end of the databinding operation. It seems the OnClientDataBound and OnDataBound are not available.

   Anyone has idea about it?

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 27 Nov 2009, 03:37 PM
Hi Michael,

We have verified that OnClientDataBound does not occur as expected and handling the server side OnDataBound event will not help in this case. We will investigate what the problem with OnClientDataBound and fix RadScheduler if needed. Meanwhile I suggest the following workaround:

<script type="text/javascript">
       function pageLoad() {
           document.getElementById("schedulerWrapper").style.visibility = "";
       }
   </script>
   <div id="schedulerWrapper" style="visibility: hidden">
       <telerik:RadScheduler ID="RadScheduler1" runat="server">
       </telerik:RadScheduler>
   </div>


Best wishes,
Peter
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Scheduler
Asked by
Michael Tao
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or