views.selectedDateFormat String

The format used to display the selected date. Uses kendo.format.

Contains two placeholders - "{0}" and "{1}" which represent the start and end date displayed by the view.

Example - set the selectedDateFormat

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  views: [
    {
      type: "day",
      selectedDateFormat: "{0:dd-MM-yyyy}"
    },
  ],
  dataSource: [
    {
      id: 1,
      start: new Date("2013/6/6 08:00 AM"),
      end: new Date("2013/6/6 09:00 AM"),
      title: "Interview"
    }
  ]
});
</script>
In this article