Hello & thanks for that, it worked.
However, always a however, this change sorted out the Create & Edit Views and I have also changed this to show dd-MMM-yy on the Select range when creating a new reservation:
function selecting(args) {
var duration = Math.floor(new DayPilot.TimeSpan(args.end.getTime() - args.start.getTime()).totalDays());
var s = duration > 1 ? "s" : "";
args.left.enabled = true;
//args.left.html = "Start:<br/>" + args.start.toString("M/d/yyyy");
args.left.html = "Start:<br/>" + args.start.toString("dd-MMM-yy");
args.right.enabled = true;
//args.right.html = "End:<br/>" + args.end.toString("M/d/yyyy") + "<br/>" + duration + " night" + s;
args.right.html = "End:<br/>" + args.end.toString("dd-MMM-yy") + "<br/>" + duration + " night" + s;
}
But the format yyyy-mm-dd still shows on the displayed reservations on the Scheduler. I have culture set to en-ca and went as far as changing DayPilot.Locale in daypilot-all.min.js, but to no avail.