\Kendo\UI\WizardStepper

A PHP class representing the stepper setting of Wizard.

Methods

indicator

Specifies whether the Stepper instance will display the indicators of its steps.

Returns

\Kendo\UI\WizardStepper

Parameters

$value boolean

Example

<?php
$stepper = new \Kendo\UI\WizardStepper();
$stepper->indicator(true);
?>

label

Specifies whether the Stepper instance will display the labels of its steps.

Returns

\Kendo\UI\WizardStepper

Parameters

$value boolean

Example

<?php
$stepper = new \Kendo\UI\WizardStepper();
$stepper->label(true);
?>

linear

Specifies whether the Stepper will allow non-linear navigation (selection of steps which are not immediately next to the current step).

Returns

\Kendo\UI\WizardStepper

Parameters

$value boolean

Example

<?php
$stepper = new \Kendo\UI\WizardStepper();
$stepper->linear(true);
?>
In this article
Not finding the help you need?