messages.noData String

The text displayed in the Scheduler year view Tooltip when there are no events on the selected date.

Example - set the "noData" message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  views: [
    {
      type: "year",
      months: 10
    },
  ],
  messages: {
    noData: "No appointments on this date."
  },
  dataSource: [
    {
      id: 1,
      start: new Date("2013/1/1 08:00 AM"),
      end: new Date("2013/1/1 09:00 AM"),
      title: "Interview"
    }
  ]
});
</script>
In this article