Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
275
Getting UltraCalendarInfo to show end date
posted

Hello,

I am working with the UltraCalendar control, and was wanting to see if there was a way to include an end date on an UltraCalendarInfo element.

Currently, whenever I add an appointment to the calendar, I can see the date that the event started (denoted by an arrow pointing to the left, followed by the date), but cannot see a corresponding end date.

I am setting a new appointment's start- and end-dates, or updating an existing appointment's start- and end-dates, and then adding that appointment to the UltraCalendarInfo's Appointments list, like so:

        Dim appt As Appointment
 
        If existingAppt IsNot Nothing Then
            appt = existingAppt
            appt.StartDateTime = beginTime
            appt.EndDateTime = endTime
        Else
            appt = New Appointment(beginTime, endTime)
            uci.Appointments.Add(appt)
        End If

The code continues on and sets the appointment's background colors and border color, but none of the fields that are set appear to affect the data displayed on the UltraCalendarInfo node.

Any assistance in this matter would be appreciated.  Thank you!

-Seth

Parents Reply Children
No Data