Trying to create a resource scheduler for an application and getting odd behavior from timeline view in conjunction with group by and group by direction = vertical.
here is the aspx code:
Issues:
here is the aspx code:
<telerik:RadScheduler ID="radScheduler" runat="server" Width="965px" OnResourcesPopulating="radScheduler_ResourcesPopulating" OnClientAppointmentsPopulated="OnClientAppointmentsPopulated" Height="500px" DayStartTime="07:00:00" OnClientAppointmentClick="onAppointmentClick" OnClientAppointmentsPopulating="OnClientAppointmentsPopulating" OnClientAppointmentDoubleClick="OnClientAppointmentDoubleClick" OnClientAppointmentDataBound="OnClientAppointmentDataBound" OverflowBehavior="Scroll" GroupBy="Tech" GroupingDirection="Vertical" SelectedView="TimelineView" EnableExactTimeRendering="true" OnClientAppointmentEditing="OnClientAppointmentEditing" AllowDelete="false" AllowInsert="false" OnClientAppointmentCreated="OnClientAppointmentCreated" > <AdvancedForm Enabled="false" Modal="true" /> <TimelineView SlotDuration="0:30:00" NumberOfSlots="32" TimeLabelSpan="2" HeaderDateFormat="M/d/yyyy h:mm tt" StartTime="5:00" ColumnHeaderDateFormat="h:mmtt" ShowInsertArea="false" /> <MonthView AdaptiveRowHeight="true" VisibleAppointmentsPerDay="20" /> <WebServiceSettings Path="/services/ResourceScheduler.asmx" ResourcePopulationMode="ServerSide" /> </telerik:RadScheduler>Issues:
- Strange spacing in rows with appointments after the first row with appointments. It looks like it is adding spacing for appointments that are not there for that resource
- Overlapping appointments are being hidden. If you look at the ungrouped calendar in day view there is an appointment from 1 - 2 that is hidden below the 10:30 - 5 appointment.