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

Messages.editable

configuration

The configuration of the scheduler editable messages. Use this option to customize or localize the scheduler editable messages.

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
    date: new Date("2022/6/13"),
    startTime: new Date("2022/6/13 07:00 AM"),
    height: 600,
    views: ["day", "week"],
    timezone: "Etc/UTC",
    dataSource: [
        {
            id: 1,
            start: new Date("2022/6/13 10:00 AM"),
            end: new Date("2022/6/13 11:00 AM"),
            title: "Team Meeting"
        }
    ],
    messages: {
        editable: {
            confirmation: "Are you sure you want to delete this event?",
            destroy: "Delete",
            save: "Save"
        }
    }
});
</script>

The text similar to "Are you sure you want to delete this event?" displayed in scheduler.

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    editable: {
      confirmation: "Are you sure you want to delete this meeting?"
    }
  },
  views: [
    {
      type: "day"
    }
  ],
  dataSource: [
    {
      id: 1,
      start: new Date("2013/6/6 08:00 AM"),
      end: new Date("2013/6/6 09:00 AM"),
      title: "Interview"
    }
  ]
});
</script>