Can the approach shown in the "Scheduler / Using RadToolTip" demo example be used with a RadScheduler control that is getting it's data using a WebService?
I've tried setting up the following:
But I never seem to get a call to RadToolTipManager1_AjaxUpdate.
Thanks,
Greg
I've tried setting up the following:
| <asp:UpdatePanel runat="server" ID="UpdatePanel1" UpdateMode="Conditional"> |
| <ContentTemplate> |
| <telerik:RadScheduler runat="server" ID="RadScheduler1" SelectedView="WeekView" SelectedDate="2009-02-02" |
| TimeZoneOffset="03:00:00" |
| StartEditingInAdvancedForm="false" |
| EnableCustomAttributeEditing="false" |
| OnClientAppointmentsPopulating="initRadScheduler" |
| OnClientAppointmentsPopulated="appointmentsLoaded" |
| OnClientAppointmentDataBound="appointmentDataBound" |
| OnClientAppointmentMoveEnd="appointmentMoveEnd" |
| OnClientAppointmentMoving="appointmentMoving"> |
| <WebServiceSettings Path="SchedulerWebService.asmx" ResourcePopulationMode="ServerSide" /> |
| </telerik:RadScheduler> |
| <telerik:RadToolTipManager runat="server" ID="RadToolTipManager1" Width="320" Height="210" |
| Animation="None" |
| HideEvent="LeaveToolTip" |
| Text="Loading..." |
| RelativeTo="Element" |
| OnAjaxUpdate="RadToolTipManager1_AjaxUpdate" |
| OnClientBeforeShow="clientBeforeShow"/> |
| </ContentTemplate> |
| </asp:UpdatePanel> |
But I never seem to get a call to RadToolTipManager1_AjaxUpdate.
Thanks,
Greg