\Kendo\UI\WizardStepButton
A PHP class representing the button setting of WizardStepButtons.
Methods
click
A click handler that defines the logic to be executed upon button click.
Returns
\Kendo\UI\WizardStepButton
Parameters
$value \Kendo\JavaScriptFunction
Example
<?php
$button = new \Kendo\UI\WizardStepButton();
$button->click(new \Kendo\JavaScriptFunction('function() { }'));
?>
enabled
Specifies whether the Button in question is enabled or not.
Returns
\Kendo\UI\WizardStepButton
Parameters
$value boolean
Example
<?php
$button = new \Kendo\UI\WizardStepButton();
$button->enabled(true);
?>
name
Specifies the name of the Button. The default buttons have "reserved" names (those names are "previous", "next", "done", "reset"). That would allow additional customization of that Buttons' text and behavior.
Returns
\Kendo\UI\WizardStepButton
Parameters
$value string
Example
<?php
$button = new \Kendo\UI\WizardStepButton();
$button->name('value');
?>
primary
Specifies whether the Button will have the k-primary class assigned or not.
Returns
\Kendo\UI\WizardStepButton
Parameters
$value boolean
Example
<?php
$button = new \Kendo\UI\WizardStepButton();
$button->primary(true);
?>
text
Specifies the text to be displayed in the Button.
Returns
\Kendo\UI\WizardStepButton
Parameters
$value string
Example
<?php
$button = new \Kendo\UI\WizardStepButton();
$button->text('value');
?>