Could you provide me with an example of how to call the BeforeCellRender event? I am trying to determine which dates are blocked/non business by traversing through each cell. I didn't see the event in the daypilot control, nor could I find it in the code behind. A walkthrough would really be appreciated. Thank you.
Digging further into the forums and playing around with the properties, I was able to find the event property that fires the beforecellrender event. Also, thismay behelpful to anyone reading this post: using e.start and e.end allowsyou to grab the time the cell is referring to. This is how I was able to compare it with my dates in the db thatwere blocked.
Comment posted by Dan Letecky 18 years ago.
Jay,
Thanks for posting the solution!
An example can be found in Demo/Calendar/CustomBusinessHours.aspx (it's for DayPilotCalendar but DayPilotScheduler works the same way):
// Turning Saturday and Sunday into business days /* if ((e.Start.DayOfWeek == DayOfWeek.Saturday || e.Start.DayOfWeek == DayOfWeek.Sunday) || (e.Start.Hour >= 9 && e.Start.Hour < 18)) { e.IsBusiness = true; } */
// or you can change just IsBusiness and you will get the color automatically /* if (e.Start.Hour >= 10 && e.Start.Hour < 12) e.IsBusiness = true; else if (e.Start.Hour >= 14 && e.Start.Hour < 16) e.IsBusiness = true; else e.IsBusiness = false; */
}
This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.