\Kendo\UI\ActionSheetActionButton

A PHP class representing the actionButton setting of ActionSheetActionButtons.

Methods

click

Specifies the click event handler of the action button.

Returns

\Kendo\UI\ActionSheetActionButton

Parameters

$value \Kendo\JavaScriptFunction

Example

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

disabled

If set to true, the action button will be disabled.

Returns

\Kendo\UI\ActionSheetActionButton

Parameters

$value boolean

Example

<?php
$actionButton = new \Kendo\UI\ActionSheetActionButton();
$actionButton->disabled(true);
?>

fillMode

Controls how the color is applied to the button. Valid values are: "solid", "outline", "flat", "link", and "none". Default value is "solid".

Returns

\Kendo\UI\ActionSheetActionButton

Parameters

$value string

Example

<?php
$actionButton = new \Kendo\UI\ActionSheetActionButton();
$actionButton->fillMode('value');
?>

icon

Specifies the icon's name of the action button.

Returns

\Kendo\UI\ActionSheetActionButton

Parameters

$value string

Example

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

iconClass

Specifies the icon's class of the action button.

Returns

\Kendo\UI\ActionSheetActionButton

Parameters

$value string

Example

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

rounded

Controls what border radius is applied to a button. Valid values are: "small", "medium", "large", "full", and "none". Default value is "medium".

Returns

\Kendo\UI\ActionSheetActionButton

Parameters

$value string

Example

<?php
$actionButton = new \Kendo\UI\ActionSheetActionButton();
$actionButton->rounded('value');
?>

size

Controls the overall physical size of a button. Valid values are: "small", "medium", "large", and "none". Default value is "medium".

Returns

\Kendo\UI\ActionSheetActionButton

Parameters

$value string

Example

<?php
$actionButton = new \Kendo\UI\ActionSheetActionButton();
$actionButton->size('value');
?>

text

Specifies the text of the action button.

Returns

\Kendo\UI\ActionSheetActionButton

Parameters

$value string

Example

<?php
$actionButton = new \Kendo\UI\ActionSheetActionButton();
$actionButton->text('value');
?>

themeColor

Controls the main color applied to the button. Valid values are: "base", "primary", "secondary", "tertiary", "info", "success", "warning", "error", "dark", "light", "inverse", and "none". Default value is "base".

Returns

\Kendo\UI\ActionSheetActionButton

Parameters

$value string

Example

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