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
50
Modifying WebDayView Gui
posted

Hi, I have a class called CustomAppointment which extends Appointment.
I can add my custom appointments to the webdayview and display them sucessfully.


I would like to show appointments like this in the webdayview
the ** are part of my custom class, how would i display these properties on the webdayview

Example
3:00  ------------------------------------------------------------------------
          | Appt Name  **Room XX  **Fee:     **CustomStatus
          |
          |   **Desc: This is my description
          |_________________________________________

Parents
  • 5389
    Suggested Answer
    posted

    aburningflame,

    You will have to set the WebDayView's AppointmentFormatString property.  The AppointmentFormatString property uses replacement-string flags (such as <SUBJECT>) that are defined in the WebScheduleInfo class; in order to get your CustomAppointment properties in the WebDayView, you will need to extend the WebScheduleInfo and add additional public static fields for these.  For more information on the AppointmentFormatString property, please see this article in our online documentation.  The WebScheduleInfo API can be found here.

    ~Kim~

Reply Children