messages Object

Provides configuration options for the messages present in the TaskBoard widget.

Example

<div id="taskBoard"></div>

<script>
  $("#taskBoard").kendoTaskBoard({
    toolbar: [
      "addColumn",
      "myCustomButton", // Custom button
      "spacer",
      "search"
    ],
    messages: {
      myCustomButton: "Custom Button Text", // Text for custom buttons - mapped with their name field
      edit: "Edit",
      createNewCard: "Create new card",
      create: "Create",
      search: "Search",
      previewCard: "Preview card",
      addCard: "Add card",
      editCard: "Edit card",
      deleteCard: "Delete Card",
      addColumn: "Add column",
      editColumn: "Edit column",
      deleteColumn: "Delete column",
      close: "Close",
      cancel: "Cancel",
      "delete": "Delete",
      saveChanges: "Save changes",
      title: "Title:",
      description: "Description:",
      newColumn: "New column",
      deleteColumnConfirm: "Are you sure you want to delete this column?",
      deleteCardConfirm: "Are you sure you want to delete this card?
    },
    dataOrderField: "order",
    dataSource: [
      { id: 1, order: 1, title: "Task 1", description: "Description 1", status: "backlog", category: "red" },
      { id: 2, order: 2, title: "Task 11", description: "Description 11", status: "backlog", category: "red" },
      { id: 3, order: 3, title: "Task 2", description: "Description 2", status: "doing", category: "green" },
      { id: 4, order: 4, title: "Task 22", description: "Description 22", status: "doing", category: "green" },
      { id: 5, order: 5, title: "Task 3", description: "Description 3", status: "done", category: "blue" }
    ],
    columns: [
      { text: "Doing", status: "doing" },
      { text: "Backlog", status: "backlog" },
      { text: "Done", status: "done" }
    ]
  });
</script>
In this article