Thank you for your help Jeff I now have the look I want, my users like the borders on the rows as they assist in selecting a time.
The additions I've made in custom.css are:
.planner-header-data-height{
height: 22px;
padding: 0;
}
.nt-relativerow{
border: 1px solid #dddddd;
position:relative;
height: 24px;
width: 100%;
}
Please note the 24px is specific to my calendar, the p_height parameter in DrawRow isn't passed through to DrawPlanRow (this would be useful) so I forced it in the css.
Change in NetWeb.clw:
NetWebServerWorkerBase.DrawPlanRow Procedure(String p_ParentId,NetPlannerDataQueueType p_Queue)
Packet StringTheory
y Long
code
packet.SetValue('data-nt-row="data" data-nt-parent="' & clip(p_ParentId) & '"')
** this line is now > self.DivHeader(p_ParentId,'planner-data-width nt-relativerow',Net:Send+Net:Crc,,packet.GetValue())
Gordon