Hello,
we have a complex booking system using a scheduler to control our shifts.
When we have DayView-GroupingDirection="Horizontal" we get the correct rendering, but when we have the setting to Verticaly we still get the grey/silver row on top of every grouping element.
Reading the source (wot comes out from the rendered browser result) i suspect that its some of the code that are still displaying even though it shouldn´t.
<table class="rsColumnHeaderTable" cellpadding="0" cellspacing="0" border="0">
<tr class="rsColumnHeaderRow">
<th class="rsMainHeader rsLastCell">DHL</th>
</tr>
</table>
ASPX code:
<
telerik:RadScheduler ID="staffSchedule" runat="server" DayEndTime="00:00:00"
DayStartTime="07:00:00" TimeLabelRowSpan="1"
FirstDayOfWeek="Monday" LastDayOfWeek="Sunday"
onappointmentdelete="staffSchedule_AppointmentDelete"
onappointmentupdate="staffSchedule_AppointmentUpdate"
CustomAttributeNames="asp:Panel,table,tr,td,staff,css,diff,shiftId" HoursPanelTimeFormat="HH:mm" Height="537px"
ShowAllDayRow="False" AllowInsert="False"
StartEditingInAdvancedForm="False" EnableAdvancedForm="False" ondatabinding="staffSchedule_DataBinding"
OnClientAppointmentEditing="OnClientAppointmentEditing" AllowEdit="False"
ShowViewTabs="False" WorkDayEndTime="00:00:00"
WorkDayStartTime="07:00:00" Width="5000px" OverflowBehavior="Scroll" GroupBy="Customers"
DayStartTime="07:00:00" TimeLabelRowSpan="1"
FirstDayOfWeek="Monday" LastDayOfWeek="Sunday"
onappointmentdelete="staffSchedule_AppointmentDelete"
onappointmentupdate="staffSchedule_AppointmentUpdate"
CustomAttributeNames="asp:Panel,table,tr,td,staff,css,diff,shiftId" HoursPanelTimeFormat="HH:mm" Height="537px"
ShowAllDayRow="False" AllowInsert="False"
StartEditingInAdvancedForm="False" EnableAdvancedForm="False" ondatabinding="staffSchedule_DataBinding"
OnClientAppointmentEditing="OnClientAppointmentEditing" AllowEdit="False"
ShowViewTabs="False" WorkDayEndTime="00:00:00"
WorkDayStartTime="07:00:00" Width="5000px" OverflowBehavior="Scroll" GroupBy="Customers"
DayView-GroupingDirection="Vertical">
<DayView WorkDayStartTime="07:00:00" WorkDayEndTime="00:00:00"
DayEndTime="00:00:00" DayStartTime="07:00:00">
</DayView>
<AppointmentTemplate>
<div class="<%# Eval("css") %>">
<%# Eval("subject") %>
</div>
</AppointmentTemplate>
</telerik:RadScheduler>
As far as i can see the "bugg" is when switching between
DayView-GroupingDirection="Horizontal" and
DayView-GroupingDirection="Vertical"