The showToday property (boolean) determines whether the section with a "Today" button will be visible in the Navigator.
DayPilot.Navigator.showTodayfalseJavaScript
const dp = new DayPilot.Navigator("dp", {
showToday: true,
// ...
});
dp.init();Angular
<daypilot-navigator [config]="config"></daypilot-navigator>config: DayPilot.NavigatorConfig = {
showToday: true,
// ...
};React
<DayPilotNavigator
showToday={true}
{/* ... */}
/>Vue
<DayPilotNavigator
:showToday="true"
<!-- ... -->
/>