The bound property (string) sets the ID of the main calendar control that is automatically updated when the date selected in the Navigator changes.
DayPilot.Navigator.boundnullThe bound control is updated using a Command event when the selected date changes in the Navigator.
This property only applies to ASP.NET WebForms, ASP.NET MVC, and Java versions.
JavaScript
const dp = new DayPilot.Navigator("dp", {
bound: "calendar",
// ...
});
dp.init();Angular
<daypilot-navigator [config]="config"></daypilot-navigator>config: DayPilot.NavigatorConfig = {
bound: "calendar",
// ...
};React
<DayPilotNavigator
bound="calendar"
{/* ... */}
/>Vue
<DayPilotNavigator
bound="calendar"
<!-- ... -->
/>