contextMenu.groups.nameString
Specifies the name 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: [
{
name: "groupAction",
text: "Group Action",
command: "GroupCommand"
}
]
}
});
</script>
In this article