\Kendo\UI\PivotConfiguratorV2MessagesFieldMenu

A PHP class representing the fieldMenu setting of PivotConfiguratorV2Messages.

Methods

apply

The text message displayed for the apply button in the includes menu item.

Returns

\Kendo\UI\PivotConfiguratorV2MessagesFieldMenu

Parameters

$value string

Example

<?php
$fieldMenu = new \Kendo\UI\PivotConfiguratorV2MessagesFieldMenu();
$fieldMenu->apply('value');
?>

clear

The text of the clear filter expressions button.

Returns

\Kendo\UI\PivotConfiguratorV2MessagesFieldMenu

Parameters

$value string

Example

<?php
$fieldMenu = new \Kendo\UI\PivotConfiguratorV2MessagesFieldMenu();
$fieldMenu->clear('value');
?>

filter

The text messages of the filter button.

Returns

\Kendo\UI\PivotConfiguratorV2MessagesFieldMenu

Parameters

$value string

Example

<?php
$fieldMenu = new \Kendo\UI\PivotConfiguratorV2MessagesFieldMenu();
$fieldMenu->filter('value');
?>

filterFields

The text messages of the fields filter menu item.

Returns

\Kendo\UI\PivotConfiguratorV2MessagesFieldMenu

Parameters

$value string

Example

<?php
$fieldMenu = new \Kendo\UI\PivotConfiguratorV2MessagesFieldMenu();
$fieldMenu->filterFields('value');
?>

_include

The text messages of the include menu item.

Returns

\Kendo\UI\PivotConfiguratorV2MessagesFieldMenu

Parameters

$value string

Example

<?php
$fieldMenu = new \Kendo\UI\PivotConfiguratorV2MessagesFieldMenu();
$fieldMenu->_include('value');
?>

moveNext

The text of the move as next action in the menu.

Returns

\Kendo\UI\PivotConfiguratorV2MessagesFieldMenu

Parameters

$value string

Example

<?php
$fieldMenu = new \Kendo\UI\PivotConfiguratorV2MessagesFieldMenu();
$fieldMenu->moveNext('value');
?>

movePrevious

The text of the move as previous action in the menu.

Returns

\Kendo\UI\PivotConfiguratorV2MessagesFieldMenu

Parameters

$value string

Example

<?php
$fieldMenu = new \Kendo\UI\PivotConfiguratorV2MessagesFieldMenu();
$fieldMenu->movePrevious('value');
?>

moveToColumns

The text of the move to columns action in the menu.

Returns

\Kendo\UI\PivotConfiguratorV2MessagesFieldMenu

Parameters

$value string

Example

<?php
$fieldMenu = new \Kendo\UI\PivotConfiguratorV2MessagesFieldMenu();
$fieldMenu->moveToColumns('value');
?>

moveToRows

The text of the move to rows action in the menu.

Returns

\Kendo\UI\PivotConfiguratorV2MessagesFieldMenu

Parameters

$value string

Example

<?php
$fieldMenu = new \Kendo\UI\PivotConfiguratorV2MessagesFieldMenu();
$fieldMenu->moveToRows('value');
?>

operators

The text of the filter operators displayed in the filter menu.

Returns

\Kendo\UI\PivotConfiguratorV2MessagesFieldMenu

Parameters

$value \Kendo\UI\PivotConfiguratorV2MessagesFieldMenuOperators|array

Example - using \Kendo\UI\PivotConfiguratorV2MessagesFieldMenuOperators

<?php
$fieldMenu = new \Kendo\UI\PivotConfiguratorV2MessagesFieldMenu();
$operators = new \Kendo\UI\PivotConfiguratorV2MessagesFieldMenuOperators();
$contains = 'value';
$operators->contains($contains);
$fieldMenu->operators($operators);
?>

Example - using array

<?php
$fieldMenu = new \Kendo\UI\PivotConfiguratorV2MessagesFieldMenu();
$contains = 'value';
$fieldMenu->operators(array('contains' => $contains));
?>

reset

The text of the reset button in the filter includes menu item.

Returns

\Kendo\UI\PivotConfiguratorV2MessagesFieldMenu

Parameters

$value string

Example

<?php
$fieldMenu = new \Kendo\UI\PivotConfiguratorV2MessagesFieldMenu();
$fieldMenu->reset('value');
?>

sortAscending

The text message displayed for the menu item which performs ascending sort.

Returns

\Kendo\UI\PivotConfiguratorV2MessagesFieldMenu

Parameters

$value string

Example

<?php
$fieldMenu = new \Kendo\UI\PivotConfiguratorV2MessagesFieldMenu();
$fieldMenu->sortAscending('value');
?>

sortDescending

The text message displayed for the menu item which performs descending sort.

Returns

\Kendo\UI\PivotConfiguratorV2MessagesFieldMenu

Parameters

$value string

Example

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