\Kendo\UI\GridColumnMenuColumnsGroup

A PHP class representing the group setting of GridColumnMenuColumnsGroups.

Methods

columns

The titles of the columns that are part of the group. In case some column does not have a specified title, you can use the field instead. Columns that don't have specified either a title or a field, are not displayed in the column menu.

Returns

\Kendo\UI\GridColumnMenuColumnsGroup

Parameters

$value array

Example

<?php
$group = new \Kendo\UI\GridColumnMenuColumnsGroup();
$group->columns(array());
?>

title

The text displayed in the header of the group.

Returns

\Kendo\UI\GridColumnMenuColumnsGroup

Parameters

$value string

Example

<?php
$group = new \Kendo\UI\GridColumnMenuColumnsGroup();
$group->title('value');
?>
In this article
Not finding the help you need?