\Kendo\UI\PopoverAction

A PHP class representing the action setting of PopoverActions.

Methods

click

A handler function to be called when the action button is clicked

Returns

\Kendo\UI\PopoverAction

Parameters

$value \Kendo\JavaScriptFunction

Example

<?php
$action = new \Kendo\UI\PopoverAction();
$action->click(new \Kendo\JavaScriptFunction('function() { }'));
?>

icon

The name of the icon to display inside the button.

Returns

\Kendo\UI\PopoverAction

Parameters

$value string

Example

<?php
$action = new \Kendo\UI\PopoverAction();
$action->icon('value');
?>

iconClass

The CSS class that will be added to the icon element inside the button.

Returns

\Kendo\UI\PopoverAction

Parameters

$value string

Example

<?php
$action = new \Kendo\UI\PopoverAction();
$action->iconClass('value');
?>

text

The text displayed in the action button

Returns

\Kendo\UI\PopoverAction

Parameters

$value string

Example

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