\Kendo\UI\WizardMessages

A PHP class representing the messages setting of Wizard.

Methods

done

Specifies text to be rendered in the "Done" button on the final step.

Returns

\Kendo\UI\WizardMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\WizardMessages();
$messages->done('value');
?>

next

Specifies text to be rendered in the "Next" button on each step.

Returns

\Kendo\UI\WizardMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\WizardMessages();
$messages->next('value');
?>

of

Specifies text to be rendered in the Pager element.

Returns

\Kendo\UI\WizardMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\WizardMessages();
$messages->of('value');
?>

previous

Specifies text to be rendered in the "Previous" button on each step.

Returns

\Kendo\UI\WizardMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\WizardMessages();
$messages->previous('value');
?>

reset

Specifies text to be rendered in the "Reset" button on each step.

Returns

\Kendo\UI\WizardMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\WizardMessages();
$messages->reset('value');
?>

step

Specifies text to be rendered in the Pager element.

Returns

\Kendo\UI\WizardMessages

Parameters

$value string

Example

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