Content-Length: 90612 | pFad | http://docs.telerik.com/kendo-ui/controls/stepper/get-started

jQuery Stepper Getting Started - Kendo UI for jQuery
New to Kendo UI for jQueryStart a free 30-day trial

Getting Started with the Stepper

This guide demonstrates how to get up and running with the Kendo UI for jQuery Stepper.

After the completion of this guide, you will be able to achieve the following end result:

Loading ...

1. Create an Empty Nav Element

First, create an empty <nav> element on the page that will serve as the main container of the Stepper component.

html
    <nav id="stepper"></nav>

2. Initialize the Stepper

In this step, you will initialize the Stepper from the empty <nav> element. All settings of the Stepper will be provided in the initialization script statement and you have to describe its layout and configuration in JavaScript.

html
<nav id="stepper"></nav>

<script>
    // Target the nav element by using jQuery and then call the kendoStepper() method.
    $("#stepper").kendoStepper();
</script>

3. Add the Steps

The component's steps provide various options, such as icons, templates, labels, and others.

html
<nav id="stepper"></nav>

    <script>
        $(document).ready(function () {
            $("#stepper").kendoStepper({
                steps: [{
                    label: "First step"
                },{
                    label: "Second step",
                    selected: true
                },{
                    label: "Last step",
                    icon: "save"
                }]
            });
        });
    </script>

Next Steps

See Also









ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: http://docs.telerik.com/kendo-ui/controls/stepper/get-started

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy