\Kendo\UI\GridContextMenuHeadItem
A PHP class representing the headItem setting of GridContextMenuHead.
Methods
command
Specifies the command of the item.
Returns
\Kendo\UI\GridContextMenuHeadItem
Parameters
$value string
Example
<?php
$headItem = new \Kendo\UI\GridContextMenuHeadItem();
$headItem->command('value');
?>
icon
Specifies the icon of the item.
Returns
\Kendo\UI\GridContextMenuHeadItem
Parameters
$value string
Example
<?php
$headItem = new \Kendo\UI\GridContextMenuHeadItem();
$headItem->icon('value');
?>
name
Specifies the name of the item.
Returns
\Kendo\UI\GridContextMenuHeadItem
Parameters
$value string
Example
<?php
$headItem = new \Kendo\UI\GridContextMenuHeadItem();
$headItem->name('value');
?>
text
Specifies the text of the item.
Returns
\Kendo\UI\GridContextMenuHeadItem
Parameters
$value string
Example
<?php
$headItem = new \Kendo\UI\GridContextMenuHeadItem();
$headItem->text('value');
?>