\Kendo\UI\PropertyGridMessages

A PHP class representing the messages setting of PropertyGrid.

Methods

commands

Defines the text and/or title for the command buttons that are used across the component.

Returns

\Kendo\UI\PropertyGridMessages

Parameters

$value \Kendo\UI\PropertyGridMessagesCommands|array

Example - using \Kendo\UI\PropertyGridMessagesCommands

<?php
$messages = new \Kendo\UI\PropertyGridMessages();
$commands = new \Kendo\UI\PropertyGridMessagesCommands();
$details = 'value';
$commands->details($details);
$messages->commands($commands);
?>

Example - using array

<?php
$messages = new \Kendo\UI\PropertyGridMessages();
$details = 'value';
$messages->commands(array('details' => $details));
?>

defaultGroupName

When grouping is enabled, sets the name for the group, to which any root properties without a defined group will be added to.

Returns

\Kendo\UI\PropertyGridMessages

Parameters

$value string

Example

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