New to Telerik UI for PHP? Download free 30-day trial

\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() { }'));
?>

iconClass

The CSS class that will be used to display the icon inside the button

Returns

\Kendo\UI\PopoverAction

Parameters

$value \Kendo\JavaScriptFunction

Example

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

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?