Step"

From Documentation
m ((via JWB))
 
(8 intermediate revisions by 2 users not shown)
Line 3: Line 3:
 
= Step =
 
= Step =
  
*Demonstration:  
+
*Demonstration: [https://www.zkoss.org/zkdemo/menu/stepbar| Step]
 
*Java API: <javadoc>org.zkoss.zkmax.zul.Step</javadoc>
 
*Java API: <javadoc>org.zkoss.zkmax.zul.Step</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zkmax.wgt.Step</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zkmax.wgt.Step</javadoc>
 
{{ZK EE}}
 
{{ZK EE}}
[ since 9.0.0 ]
+
{{versionSince | 9.0.0}}
  
 
= Employment/Purpose =
 
= Employment/Purpose =
Line 45: Line 45:
  
 
== IconSclass ==
 
== IconSclass ==
Set the icon sclass to change the icon of step.
+
Set the icon CSS class to apply a custom icon.
  
By applying this property, the icon of complete and error visual style will be changed accordingly.
+
If you set this property, it will override the complete and error icons accordingly.
  
[[File:Step-iconsclass.png]]
+
[[File:Step-iconsclass.png |center ]]
 
<source lang="xml">
 
<source lang="xml">
<stepbar>
+
    <stepbar width="800px">
    <step title="Default Error" error="true"/>
+
        <step title="Custom Step icon" iconSclass="z-icon-star-o"/>
    <step title="Custom Error" error="true" iconSclass="z-icon-bug"/>
+
        <step title="Custom Error" error="true" iconSclass="z-icon-bug"/>
</stepbar>
+
        <step title="Custom Complete" iconSclass="z-icon-home"/>
 +
    </stepbar>
 
</source>
 
</source>
 +
 +
Please read [[ZK_Component_Reference/Base_Components/LabelImageElement#IconSclass]] to know more available build-in icons.
  
 
== Title ==
 
== Title ==
Set the title of the step.
+
Set the title (label) of each step.
 
(Default: empty)
 
(Default: empty)
  
 
= Supported Events =
 
= Supported Events =
{| border="1" | width="100%"
+
{| class='wikitable' | width="100%"
 
! <center>Name</center>
 
! <center>Name</center>
 
! <center>Event Type</center>
 
! <center>Event Type</center>
Line 79: Line 82:
 
= Use Cases =
 
= Use Cases =
  
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Description !! Example Location
 
! Version !! Description !! Example Location
 
|-
 
|-
Line 90: Line 93:
  
 
{{LastUpdated}}
 
{{LastUpdated}}
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-

Latest revision as of 13:14, 7 January 2022

Step

  • Available for ZK:
  • http://www.zkoss.org/product/zkhttp://www.zkoss.org/whyzk/zkeeVersion ee.png

Since 9.0.0

Employment/Purpose

A step is used for displaying user navigation, it should be placed inside a Stepbar and shouldn't be used without a Stepbar.

Example

Stepbar-example.png

<zk>
    <stepbar linear="false" activeIndex="2" width="600px">
        <step title="First Step" iconSclass="z-icon-home"/>
        <step title="Second Step" complete="true" />
        <step title="Third Step" error="true" />
    </stepbar>
</zk>

Properties

Complete

Whether this step is completed. (Default: false)

The default visual style: Step-complete-default.png

Error

Whether this step is in error. (Default: false)

The default visual style: Step-error-default.png

The priority of error is higher than complete. If both properties are set, the result will be an error state visually.

IconSclass

Set the icon CSS class to apply a custom icon.

If you set this property, it will override the complete and error icons accordingly.

Step-iconsclass.png
    <stepbar width="800px">
        <step title="Custom Step icon" iconSclass="z-icon-star-o"/>
        <step title="Custom Error" error="true" iconSclass="z-icon-bug"/>
        <step title="Custom Complete" iconSclass="z-icon-home"/>
    </stepbar>

Please read ZK_Component_Reference/Base_Components/LabelImageElement#IconSclass to know more available build-in icons.

Title

Set the title (label) of each step. (Default: empty)

Supported Events

Name
Event Type
none

none

Supported Children

* None

Use Cases

Version Description Example Location
     

Version History

Last Update : 2022/01/07


Version Date Content
9.0.0 November, 2019 ZK-4375: Provide a stepbar component



Last Update : 2022/01/07

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.