Using the JavaScript version of Scheduler, how can I display only business hours on a Saturday? The previously supplied answers (such as: http://kb.daypilot.org/79065/how-to-show-business-hours-on-weekends-in-scheduler/) are written using ASP.Net or MVC where there is an event argument (e) that has a property called IsVisible.
However, in Javascript, the onBeforeTimeHeaderRender event only receives an "args" argument and there is no property called Visible in that data. In fact, that event is not even fired if showNonBusiness = false is set.
I've attached an Html file which reproduces this issue.
Is there a different event to use, perhaps?