New to Kendo UI for jQueryStart a free 30-day trial

Footer

configuration

If set to false the footer of the scheduler would not be displayed.

Boolean|Object
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  dataSource: [
    {
      start: new Date("2013/6/6 08:00 AM"),
      end: new Date("2013/6/6 09:00 AM"),
      title: "Breakfast"
    }
  ],
  footer: false
});
</script>

footer.command

String|Boolean

Sets the command which will be displayed in the scheduler footer. Currently only "workDay" option is supported. If the option is set to false, the "workDay" button will be removed from the footer.

Default: "workDay"

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  dataSource: [
    {
      start: new Date("2013/6/6 08:00 AM"),
      end: new Date("2013/6/6 09:00 AM"),
      title: "Breakfast"
    }
  ],
  footer: {
    command: false
  }
});
</script>
In this article
footerfooter.command
Not finding the help you need?
Contact Support