i am binding a dataTable.
I want to do some work when i move my mouse over the appointment like displaying delete image on hover.
2. But there is no onmouseover event for the appointment. How can i achieve this.
3. I have multiple appoitnments on oct 1st. In my month view its not showing properly.But in Day view its showing properly.
I have attached the Image.
Here is my RadSchedular code.
- How to re arrange views in this order DayView-WeekView-MultiDayView -MonthView- TimelineView
I want to do some work when i move my mouse over the appointment like displaying delete image on hover.
2. But there is no onmouseover event for the appointment. How can i achieve this.
3. I have multiple appoitnments on oct 1st. In my month view its not showing properly.But in Day view its showing properly.
I have attached the Image.
Here is my RadSchedular code.
<
telerik:RadScheduler
ID
=
"radScheduler"
runat
=
"server"
Height
=
"90%"
Skin
=
"Forest"
EnableEmbeddedSkins
=
"False"
OnAppointmentCreated
=
"radScheduler_AppointmentCreated"
OnAppointmentDataBound
=
"radScheduler_AppointmentDataBound"
OnNavigationComplete
=
"radScheduler_NavigationComplete"
EnableResourceEditing
=
"False"
OnClientAppointmentDoubleClick
=
"appointmentDoubleClick"
AdvancedForm-Enabled
=
"false"
AllowInsert
=
"False"
RowHeight
=
"20px"
Localization-HeaderMultiDay
=
"Work Week"
NumberOfHoveredRows
=
"1"
EnableAdvancedForm
=
"False"
SelectedView
=
"MonthView"
EnableExactTimeRendering
=
"True"
Width
=
"100%"
>
<
AdvancedForm
Modal
=
"false"
Enabled
=
"false"
/>
<
DayView
DayStartTime
=
"08:00:00"
EnableExactTimeRendering
=
"true"
/>
<
MonthView
VisibleAppointmentsPerDay
=
"4"
/>
<
WeekView
DayStartTime
=
"08:00:00"
EnableExactTimeRendering
=
"true"
/>
<
MultiDayView
DayStartTime
=
"08:00:00"
UserSelectable
=
"true"
NumberOfDays
=
"5"
/>
<
Localization
HeaderMultiDay
=
"Work Week"
></
Localization
>
<
TimelineView
SlotDuration
=
"1:00:00"
ColumnHeaderDateFormat
=
"HH:mm"
EnableExactTimeRendering
=
"True"
NumberOfSlots
=
"7"
/>
<
Reminders
Enabled
=
"true"
/>
<
AppointmentTemplate
>
<
div
style
=
"float: left;"
>
<
a
id
=
"achSubject"
href
=
"javascript:alert('Navigate to Open Appointment')"
>
<%# Eval("Subject") %>
</
a
>
</
div
>
<
div
>
<
div
class
=
"rsAptReminder"
style
=
"display: <%# Eval("
alarm_on") %>"></
div
>
<%--<
img
alt
=
""
src
=
"Images/reminder.gif"
height
=
"16px"
width
=
"16px"
style
=
"display: <%# Eval("
alarm_on") %>" />--%>
</
div
>
<
div
class
=
"rsAptAct"
style
=
"padding-left: 2px; float: left; padding-top:2px; vertical-align:bottom;"
">
<
img
alt
=
""
width
=
"12px"
height
=
"10px"
src
=
"<%# AppointmentTypeImage(Eval("
act_type")) %>" />
</
div
>
<
div
style
=
"float: left; padding-left: 0px;"
>
<
div
style
=
"float: left; display: <%# AppointmentRecuuringImage(Eval("
recurring_id"),Eval("outlook_recurrence_id_range")) %>;" class="rsAptRecurrence">
</
div
>
<%--<
img
alt
=
""
height
=
"16px"
width
=
"16px"
src
=
"Images/recur.gif"
style
=
"display: <%# AppointmentRecuuringImage(Eval("
recurring_id"),Eval("outlook_recurrence_id_range")) %>" />--%>
</
div
>
</
AppointmentTemplate
>
</
telerik:RadScheduler
>