I have added a RadScheduler and a RadToolTipManager to a page. The RadScheduler OverflowBehavior="Expand" and Width="100%" to create that effect in the scheduler. When mouse over one of the appointment of the top of the scheduler the RadToolTipManager shows the tooltip over the appointment but when it's in one of the bottom the page is scrolled up and then I have to scroll it down in order to see the tooltip. Is there any solution to avoid the page scrolls up when mouse over an appointment in the bottom of the scheduler?.
<
asp:UpdatePanel runat="server" ID="EventUpdatePanel" UpdateMode="Conditional">
<ContentTemplate>
<telerik:RadScheduler ID="EventScheduler" runat="server"
OverflowBehavior="Expand"
width="100%"
Skin="Web20"
ReadOnly="true"
DataKeyField="EventId"
EnableEmbeddedSkins="false"
DataSubjectField="Subject"
DataStartField="StartTime"
DataEndField="EndTime"
DataDescriptionField="Description"
TimelineView-UserSelectable="false"
ShowAllDayRow="true"
ShowFullTime="false"
FirstDayOfWeek="Monday"
LastDayOfWeek="Friday"
SelectedView="MonthView"
MonthView-VisibleAppointmentsPerDay="4"
RowHeight="30px"
OnAppointmentCommand="EventScheduler_AppointmentCommand">
<AppointmentTemplate>
<div>
<%
#Eval("Subject") %>
<br />
</div>
</AppointmentTemplate>
</telerik:RadScheduler>
<telerik:RadToolTipManager runat="server" ID="EventToolTipManager"
Width="320" Height="210"
Animation="Fade"
HideEvent="LeaveToolTip"
Text="Loading..."
RelativeTo="Element"
Position="TopLeft"
OnClientBeforeShow="clientBeforeShow"
EnableShadow="true"
OnAjaxUpdate="EventToolTipManager_AjaxUpdate" />
</ContentTemplate>
</
asp:UpdatePanel>
Regards,
Juan