\Kendo\UI\TaskBoardPreviewPaneButton
A PHP class representing the button setting of TaskBoardPreviewPaneButtons.
Methods
command
The command of the button.
Returns
\Kendo\UI\TaskBoardPreviewPaneButton
Parameters
$value string
Example
<?php
$button = new \Kendo\UI\TaskBoardPreviewPaneButton();
$button->command('value');
?>
icon
The icon of the button.
Returns
\Kendo\UI\TaskBoardPreviewPaneButton
Parameters
$value string
Example
<?php
$button = new \Kendo\UI\TaskBoardPreviewPaneButton();
$button->icon('value');
?>
name
The name of the button.
Returns
\Kendo\UI\TaskBoardPreviewPaneButton
Parameters
$value string
Example
<?php
$button = new \Kendo\UI\TaskBoardPreviewPaneButton();
$button->name('value');
?>
options
The command options of the button.
Returns
\Kendo\UI\TaskBoardPreviewPaneButton
Parameters
$value string
Example
<?php
$button = new \Kendo\UI\TaskBoardPreviewPaneButton();
$button->options('value');
?>
primary
Toggles whether the color of the button to be primary or not.
Returns
\Kendo\UI\TaskBoardPreviewPaneButton
Parameters
$value boolean
Example
<?php
$button = new \Kendo\UI\TaskBoardPreviewPaneButton();
$button->primary(true);
?>
spriteCssClass
The class name of the icon element.
Returns
\Kendo\UI\TaskBoardPreviewPaneButton
Parameters
$value string
Example
<?php
$button = new \Kendo\UI\TaskBoardPreviewPaneButton();
$button->spriteCssClass('value');
?>
text
The text of the button.
Returns
\Kendo\UI\TaskBoardPreviewPaneButton
Parameters
$value string
Example
<?php
$button = new \Kendo\UI\TaskBoardPreviewPaneButton();
$button->text('value');
?>