\Kendo\UI\PivotContainer

A PHP wrapper for Kendo UI PivotContainer.

Inherits from \Kendo\UI\Widget.

Usage

To use PivotContainer 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 PivotContainer

<?php
// Create a new instance of PivotContainer and specify its id
$pivotContainer = new \Kendo\UI\PivotContainer('PivotContainer');

// Configure it
$pivotContainer->configuratorPosition('value')

// Output it

echo $pivotContainer->render();
?>

Methods

configuratorPosition

Sets the position of the configurator and button related to the pivot inside the container

Returns

\Kendo\UI\PivotContainer

Parameters

$value string

Example

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