\Kendo\UI\DropDownTreePopup

A PHP class representing the popup setting of DropDownTree.

Methods

appendTo

Defines a jQuery selector that will be used to find a container element, where the popup will be appended to.

Returns

\Kendo\UI\DropDownTreePopup

Parameters

$value string

Example

<?php
$popup = new \Kendo\UI\DropDownTreePopup();
$popup->appendTo('value');
?>

origin

Specifies how to position the popup element based on anchor point. The value is space separated "y" plus "x" position.The available "y" positions are: - "bottom" - "center" - "top"The available "x" positions are: - "left" - "center" - "right"

Returns

\Kendo\UI\DropDownTreePopup

Parameters

$value string

Example

<?php
$popup = new \Kendo\UI\DropDownTreePopup();
$popup->origin('value');
?>

position

Specifies which point of the popup element to attach to the anchor's origin point. The value is space separated "y" plus "x" position.The available "y" positions are: - "bottom" - "center" - "top"The available "x" positions are: - "left" - "center" - "right"

Returns

\Kendo\UI\DropDownTreePopup

Parameters

$value string

Example

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