Posted 16 Jan 2012 Link to this post
<AppointmentTemplate> <
div
style='background-color: <%# Eval("BackgroundColor")%>); height: 200px'>
<
img
src='../uploads/avatars/<%# Eval("Photo") %>' style="height: 28px;float: left" alt='' />
<%# Eval("Subject")%>
</
> </AppointmentTemplate>
Posted 17 Jan 2012 Link to this post
Protected Sub RadScheduler1_AppointmentDataBound(ByVal sender As Object, ByVal e As SchedulerEventArgs)
If e.Appointment.Attributes("Progress") = 100 Then
e.Appointment.BackColor = System.Drawing.Color.PaleGreen
Else
e.Appointment.BackColor = System.Drawing.Color.PaleVioletRed
End If
End Sub
src='../uploads/avatars/<%# Eval("Photo")%>' style="height: 28px;float: left; margin: 0px 3px 0px 0px" alt='' />
Posted 18 Jan 2012 Link to this post