The rowFilterParentsAlwaysVisible property (boolean) determines whether the parents of visible rows in the JavaScript Scheduler remain visible when a row filter is applied, even if they are not explicitly marked as visible by the DayPilot.Scheduler.onRowFilter logic.
DayPilot.Scheduler.rowFilterParentsAlwaysVisibletrueJavaScript
const dp = new DayPilot.Scheduler("dp", {
rowFilterParentsAlwaysVisible: false,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rowFilterParentsAlwaysVisible: false,
// ...
};React
<DayPilotScheduler
rowFilterParentsAlwaysVisible={false}
{/* ... */}
/>Vue
<DayPilotScheduler
:rowFilterParentsAlwaysVisible="false"
<!-- ... -->
/>DayPilot.Scheduler.onRowFilter
Row Filtering [doc.daypilot.org]