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

Calendar/Scheduler Not Responding

3 Answers 77 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Susan
Top achievements
Rank 1
Susan asked on 28 Feb 2008, 10:46 PM
I have a calendar, repeater and scheduler. The repeater has checkboxes. When I click on, the scheduler updates accordingly, but the calendar and the scheduler become 'locked' at that point. I cannot click on a date on the calendar and have it move to that day. Here is some code. I think it is in the AjaxManager but I cannot figure out what I need to change.

Thanks!
Susan

<asp:repeater id="rClientTable" runat="server">

<itemtemplate>

<tr>

<td class="normal" style="border-bottom:solid 1 black">

<asp:CheckBox id="chkClient" OnCheckedChanged="ClientCheckBox_Changed" AutoPostBack="true" Runat="server" Text='<%# Container.dataitem("BusinessName") %>' />

</td>

</tr>

</itemtemplate>

</asp:repeater> 

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" OnAjaxSettingCreating="RadAjaxManager1_AjaxSettingCreating">

<AjaxSettings>

<telerik:AjaxSetting AjaxControlID="RadScheduler1">

<UpdatedControls>

<telerik:AjaxUpdatedControl ControlID="RadScheduler1"/>

<telerik:AjaxUpdatedControl ControlID="RadCalendar1" />

<telerik:AjaxUpdatedControl ControlID="pnlScheduler" />

<telerik:AjaxUpdatedControl ControlID="pnlAppointmentForm" />

</UpdatedControls>

</telerik:AjaxSetting>

<telerik:AjaxSetting AjaxControlID="RadCalendar1">

<UpdatedControls>

<telerik:AjaxUpdatedControl ControlID="RadScheduler1"/>

<telerik:AjaxUpdatedControl ControlID="RadCalendar1" />

<telerik:AjaxUpdatedControl ControlID="pnlScheduler" />

<telerik:AjaxUpdatedControl ControlID="pnlAppointmentForm" />

</UpdatedControls>

</telerik:AjaxSetting>

<telerik:AjaxSetting AjaxControlID="rClientTable">

<UpdatedControls>

<telerik:AjaxUpdatedControl ControlID="chkClient"/>

</UpdatedControls>

</telerik:AjaxSetting>

<telerik:AjaxSetting AjaxControlID="RadAjaxManager1">

<UpdatedControls>

<telerik:AjaxUpdatedControl ControlID="DisplayMessage" />

</UpdatedControls>

</telerik:AjaxSetting>

</AjaxSettings>

</telerik:RadAjaxManager>

3 Answers, 1 is accepted

Sort by
0
Sebastian
Telerik team
answered on 29 Feb 2008, 08:49 AM
Hi Susan,

I think that you need to add the calendar and the scheduler to this ajax setting as updated controls:

<telerik:AjaxSetting AjaxControlID="rClientTable">   
 <UpdatedControls>   
  <telerik:AjaxUpdatedControl ControlID="chkClient"/>   
 </UpdatedControls>   
</telerik:AjaxSetting>   
 

namely:

<telerik:AjaxSetting AjaxControlID="rClientTable">      
 <UpdatedControls>      
  <telerik:AjaxUpdatedControl ControlID="chkClient"/>     
  <telerik:AjaxUpdatedControl ControlID="RadScheduler1"/>      
  <telerik:AjaxUpdatedControl ControlID="RadCalendar1"/>     
 </UpdatedControls>      
</telerik:AjaxSetting>    
 

Thus the scheduler and the calendar controls should be updated and function normally after ajax request triggered from the checkboxes in the repeater.

Best regards,
Stephen
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Susan
Top achievements
Rank 1
answered on 29 Feb 2008, 12:23 PM
I have tried that combination (i have tried alot of combinations) and get the same result. As soon as I click on a checkbox within the repeater, the calendar and scheduler no longer respond.

Thanks.
Susan
0
Konstantin Petkov
Telerik team
answered on 04 Mar 2008, 07:27 AM
Hello Susan,

I would suggest you download and upgrade to the latest Prometheus RadControls labeled 2007_3_1425. If that does not help, I will kindly ask you to submit a support ticket where you can send a sample reproducing the problem. We will gladly look into it and get back to you with resolution.

Regards,
Konstantin Petkov
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Calendar
Asked by
Susan
Top achievements
Rank 1
Answers by
Sebastian
Telerik team
Susan
Top achievements
Rank 1
Konstantin Petkov
Telerik team
Share this question
or