contextMenu.groups.items.textString

Specifies the text of the item.

Example

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
  columns: [
    { field: "productName" },
    { field: "category" }
  ],
  dataSource: [
    { productName: "Tea", category: "Beverages" },
    { productName: "Coffee", category: "Beverages" }
  ],
  groupable: true,
  contextMenu: {
    groups: [
      {
        text: "Group Operations",
        items: [
          {
            text: "Expand All",
            command: "ExpandAllCommand"
          }
        ]
      }
    ]
  }
});
</script>
In this article
contextMenu.groups.items.text
Not finding the help you need?
Contact Support