Agent-readable demo data
- Title
- Monthly Event Calendar | DayPilot Pro for JavaScript Demo
- Tree
- DayPilot JavaScript Demo
- Catalog root
- Default
- Description
- Read more about the weeks view [doc.daypilot.org].
Inline demo script 1
const dp = new DayPilot.Month("dp", {
viewType: "Weeks",
startDate: DayPilot.Date.today(),
weeks: 2,
onTimeRangeSelected: async args => {
const modal = await DayPilot.Modal.prompt("New event name:", "Event");
dp.clearSelection();
if (modal.canceled) return;
dp.events.add({
start: args.start,
end: args.end,
id: DayPilot.guid(),
text: modal.result
});
dp.message("Created");
}
});
dp.init();
const app = {
loadData() {
const events = [];
let start = DayPilot.Date.today();
for (let i = 0; i < 15; i++) {
const add = Math.floor(Math.random() * 2);
// const add = 1;
start = start.addDays(add);
if (start.getDayOfWeek() === 6) {
start = start.addDays(2);
}
if (start.getDayOfWeek() === 0) {
start = start.addDays(1);
}
events.push({
start: start,
end: start.addDays(1),
id: DayPilot.guid(),
barColor: app.barColor(i),
text: "Event " + (i + 1)
});
}
dp.update({events});
},
barColor(i) {
const colors = ["#6FA8DC", "#93C47D", "#FFD966", "#E06666"];
return colors[i % 4];
},
};
app.loadData();