\Kendo\UI\PivotConfiguratorButton
A PHP wrapper for Kendo UI PivotConfiguratorButton.
Inherits from \Kendo\UI\Widget.
Usage
To use PivotConfiguratorButton in a PHP page instantiate a new instance, configure it via the available
configuration methods and output it by echo
-ing the result of the render method.
Using Kendo PivotConfiguratorButton
<?php
// Create a new instance of PivotConfiguratorButton and specify its id
$pivotConfiguratorButton = new \Kendo\UI\PivotConfiguratorButton('PivotConfiguratorButton');
// Configure it
$pivotConfiguratorButton->configurator('value')
// Output it
echo $pivotConfiguratorButton->render();
?>
Methods
configurator
Use it to set the Id of the configurator that will be shown/hidden when clicking the button.
Returns
\Kendo\UI\PivotConfiguratorButton
Parameters
$value string
Example
<?php
$pivotConfiguratorButton = new \Kendo\UI\PivotConfiguratorButton('PivotConfiguratorButton');
$pivotConfiguratorButton->configurator('value');
?>
text
The text of the button.
Returns
\Kendo\UI\PivotConfiguratorButton
Parameters
$value string
Example
<?php
$pivotConfiguratorButton = new \Kendo\UI\PivotConfiguratorButton('PivotConfiguratorButton');
$pivotConfiguratorButton->text('value');
?>