The command property (string) sets the command name that is passed to the DayPilot.Navigator.bound control when the Navigator notifies a selected date change.
DayPilot.Navigator.command"navigate"This property only applies to ASP.NET WebForms, ASP.NET MVC, and Java versions.
JavaScript
const dp = new DayPilot.Navigator("dp", {
command: "navigate",
// ...
});
dp.init();Angular
<daypilot-navigator [config]="config"></daypilot-navigator>config: DayPilot.NavigatorConfig = {
command: "navigate",
// ...
};React
<DayPilotNavigator
command="navigate"
{/* ... */}
/>Vue
<DayPilotNavigator
command="navigate"
<!-- ... -->
/>