Is it possible to hide the Schedule area so you can only see the AllDayEvents area?
If you don't want to see/use the timeslots why not use an UltraWeekView or MonthView.
I am sure you could emulate the DayView to some extent by using the WeekView - just set the number of visible days = 1 then you will get just one day
hi aaron,
we need something like this. but i cant find the property to set visibledays = 1;
ultraWeekView has VisibleWeek but no VisibleDays
I'm not sure if I can visualize exactly what you are trying to achieve here, but you might want to try setting the VisibleWeeks property of an UltraMonthViewSingle control to 1; this will simulate a weekly view, but with all days of the week displayed on one "row".
Also note that days of the week can be hidden using the Visible property of the DayOfWeek object; these objects are returned from the UltraCalendarInfo.DaysOfWeek collection.
I have really not worked with the Ultraweekview control at all. But i imagine you could do something with the CALENDARINFO which is bound to the ultraweekview.
Use DaySettings and set DaySettings for the all days except one to disabled... you would have to dynamically change these settings as your scroll through... I don't know if this is possible or not. but maybe it is somewhere to start looking.
Maybe the other option is to adjust the width of each column to = the width of the weekviews container control such as a panel. You could then "Hide" the rest of the days until the user scrolls sideways etc.
I dunno
Good luck