How should I grey-out the whole day if none of my resources have businessHours set?
When businessHours are set for each of the resources on the specific date
When businessHours are not set for any of the resources on the specific date
My resource Ruby object was not set properly. Simply checking if businessHours is already set, if not, adding businessHours with only dow set for every resource solved my problem.
resource_example = { id: my_id, title: my_title, businessHours: { dow: my_daynum } }