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
166
Several UltraTimelineView Issues
posted

I started using the UltraTimelineView control yesterday and like all Infragistics controls I've used so far, aesthetically it looks great but as soon as you try and do something "non standard" with it, it falls apart.

I have several questions listed below in regard to this control :

1. Is it possible to programmatically set row heights (not appointment heights)

2. How can you disable all built in edit functionality (cancelling the AppointmentEnteringEditMode event does not work as the event doesn't even fire)

3. Are you able visibly group owners by department (eg under a header row)

4. How can I disable the randomised owner color schemes in Office2007 ViewStyle mode and apply one generic color scheme to all owners

5. In about 75% of cases, appointments that have an end date that is after the visible rage end or a start date that is before the visible range start are not being displayed on the timeline even though they are in the appointments collection.

Parents
No Data
Reply
  • 69832
    Offline posted

    1. Only indirectly by setting MaximumOwnersInView. Less owners means bigger rows.

    2. I assume you are referring to the appointment dialog appearing. The BeforeDisplayAppointmentDialog event fires prior to this happening, and it is cancelable. You can disable all UI actions for an appointment (except selection) by setting Appointment.Locked to true.

    3. No.

    4. Assign UltraCalendarLook.Outlook2007ColorSchemes.DefaultScheme to each Owner's Outlook2007ColorScheme property.

    5. I was not able to understand this one. If the range defined by the Appointment's StartDateTime and EndDateTime properties coincides with the date/time range currently being displayed by the control, it should appear, and if it doesn't, you should report it as a bug.

    mainstay said:
    ...as soon as you try and do something "non standard" with it, it falls apart.

    If you provide more details about what you are trying to accomplish we can try to help.

Children