Navitem"

From Documentation
m (correct highlight (via JWB))
 
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 +
{{ZKComponentReferencePageHeader}}
 +
 
= Navitem =
 
= Navitem =
  
 
*Demonstration:  
 
*Demonstration:  
*Java API:  [http://www.zkoss.org/javadoc/7.0.0-Preview/zk/org/zkoss/zkmax/zul/Navitem.html Navitem]  
+
*Java API:  [http://www.zkoss.org/javadoc/latest/zk/org/zkoss/zkmax/zul/Navitem.html Navitem]  
*JavaScript API: [http://www.zkoss.org/javadoc/7.0.0-Preview/jsdoc/zkmax/nav/Navitem.html Navitem]
+
*JavaScript API: [http://www.zkoss.org/javadoc/latest/jsdoc/zkmax/nav/Navitem.html Navitem]
 
*Style Guide:
 
*Style Guide:
 
*{{ZK EE}}
 
*{{ZK EE}}
Line 17: Line 19:
 
<navbar orient="vertical" width="200px">
 
<navbar orient="vertical" width="200px">
 
<navitem label="Home" iconSclass="z-icon-home" />
 
<navitem label="Home" iconSclass="z-icon-home" />
<nav label="Get Started" iconSclass="z-icon-th-list" detailed="true">
+
<nav label="Get Started" iconSclass="z-icon-th-list" badgeText="3">
 
<navitem label="Step One" />
 
<navitem label="Step One" />
 
<navitem label="Step Two" />
 
<navitem label="Step Two" />
Line 32: Line 34:
 
In addition to handling the onClick event, you could specify the URL in the href property (<javadoc method="setHref(java.lang.String)">org.zkoss.zkmax.zul.Navitem</javadoc>), such that the browser will navigate to the URL you specified directly (without sending back any request to the server).  If you prefer to visit the URL in another browser window, you could specify the name in <javadoc method="setTarget(java.lang.String)">org.zkoss.zkmax.zul.Navitem</javadoc> (just like using a HTML A tag).
 
In addition to handling the onClick event, you could specify the URL in the href property (<javadoc method="setHref(java.lang.String)">org.zkoss.zkmax.zul.Navitem</javadoc>), such that the browser will navigate to the URL you specified directly (without sending back any request to the server).  If you prefer to visit the URL in another browser window, you could specify the name in <javadoc method="setTarget(java.lang.String)">org.zkoss.zkmax.zul.Navitem</javadoc> (just like using a HTML A tag).
  
Notice that the end user could hold the <tt>Control</tt> key and click on the navitem to visit the link in a new browser window (like a HTML A tag does).
+
Notice that the end user could hold the <code>Control</code> key and click on the navitem to visit the link in a new browser window (like a HTML A tag does).
  
 
=== Href and the onClick Event ===
 
=== Href and the onClick Event ===
There are two ways to add behavior to a <tt>navitem</tt>. Firstly, you can specify a listener for the <tt>onClick</tt> event. Secondly, you could specify a URL for the <tt>href</tt> property (<javadoc method="setHref(java.lang.String)">org.zkoss.zkmax.zul.Navitem</javadoc>). If both are specified, the <tt>href</tt> property has the higher priority, i.e., the onClick event won't be sent.
+
There are two ways to add behavior to a <code>navitem</code>. Firstly, you can specify a listener for the <code>onClick</code> event. Secondly, you could specify a URL for the <code>href</code> property (<javadoc method="setHref(java.lang.String)">org.zkoss.zkmax.zul.Navitem</javadoc>). If both are specified, the <code>href</code> property has the higher priority, i.e., the onClick event won't be sent.
  
 
<source lang="xml" >
 
<source lang="xml" >
Line 45: Line 47:
  
 
=== Href and SendRedirect  ===
 
=== Href and SendRedirect  ===
The href property is processed at the client. In other words, the browser will jump to the URL specified in the <tt>href</tt> property, so your application running on the server has no chance to process it.
+
The href property is processed at the client. In other words, the browser will jump to the URL specified in the <code>href</code> property, so your application running on the server has no chance to process it.
  
 
If you have to process it on the server or you have to decide whether to jump to another URL based on certain condition, you could listen to the onClick event, process it, and then invoke <javadoc method="sendRedirect(java.lang.String)">org.zkoss.zk.ui.Executions</javadoc> if it jumps to another URL.
 
If you have to process it on the server or you have to decide whether to jump to another URL based on certain condition, you could listen to the onClick event, process it, and then invoke <javadoc method="sendRedirect(java.lang.String)">org.zkoss.zk.ui.Executions</javadoc> if it jumps to another URL.
Line 60: Line 62:
 
Since the onClick event is sent to the server for processing, you are able to perform additional tasks before invoking <javadoc method="sendRedirect(java.lang.String)">org.zkoss.zk.ui.Executions</javadoc>, such as redirecting to another page only if certain conditions are satisfied.
 
Since the onClick event is sent to the server for processing, you are able to perform additional tasks before invoking <javadoc method="sendRedirect(java.lang.String)">org.zkoss.zk.ui.Executions</javadoc>, such as redirecting to another page only if certain conditions are satisfied.
  
On the other hand, the <tt>href</tt> property is processed at the client side. Your application won't be notified when users click the navitem.
+
On the other hand, the <code>href</code> property is processed at the client side. Your application won't be notified when users click the navitem.
 +
 
 +
== Badge Text ==
 +
{{versionSince| 9.6.0}}
 +
 
 +
This property set the badge text for the <code>Navitem</code>, it is used to present more details of <code>Navitem</code>.
 +
<source lang="xml" highlight="1">
 +
<navitem label="Step One" badgeText="1"/>
 +
</source>
  
 
= 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 89:
 
= Use Cases =
 
= Use Cases =
  
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Description !! Example Location
 
! Version !! Description !! Example Location
 
|-
 
|-
Line 90: Line 100:
  
 
{{LastUpdated}}
 
{{LastUpdated}}
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-
 
| 7.0.0
 
| 7.0.0
 
| August, 2013
 
| August, 2013
| <javadoc>org.zkoss.zkmax.nav.Navitem</javadoc> was introduced.
+
| [http://www.zkoss.org/javadoc/latest/zk/org/zkoss/zkmax/zul/Navitem.html Navitem] was introduced.
 
|}
 
|}
  
 
{{ZKComponentReferencePageFooter}}
 
{{ZKComponentReferencePageFooter}}

Latest revision as of 09:22, 18 January 2022

Navitem

  • Demonstration:
  • Java API: Navitem
  • JavaScript API: Navitem
  • Style Guide:
    • Available for ZK:
    • http://www.zkoss.org/product/zkhttp://www.zkoss.org/whyzk/zkeeVersion ee.png

    Employment/Purpose

    A single choice in a Navbar or Nav element. It acts much like a button but it is rendered on a navbar.

    Example

    ZKComRef Nav.png

    <navbar orient="vertical" width="200px">
    	<navitem label="Home" iconSclass="z-icon-home" />
    	<nav label="Get Started" iconSclass="z-icon-th-list" badgeText="3">
    		<navitem label="Step One" />
    		<navitem label="Step Two" />
    		<navitem label="Step Three" />
    	</nav>
    	<navitem label="About" iconSclass="z-icon-flag" />
    	<navitem label="Contact" iconSclass="z-icon-envelope"/>
    </navbar>
    

    Properties

    Href

    In addition to handling the onClick event, you could specify the URL in the href property (Navitem.setHref(String)), such that the browser will navigate to the URL you specified directly (without sending back any request to the server). If you prefer to visit the URL in another browser window, you could specify the name in Navitem.setTarget(String) (just like using a HTML A tag).

    Notice that the end user could hold the Control key and click on the navitem to visit the link in a new browser window (like a HTML A tag does).

    Href and the onClick Event

    There are two ways to add behavior to a navitem. Firstly, you can specify a listener for the onClick event. Secondly, you could specify a URL for the href property (Navitem.setHref(String)). If both are specified, the href property has the higher priority, i.e., the onClick event won't be sent.

    <navbar>
    	<navitem label="click me" onClick="do_something_in_Java()"/>
    	<navitem label="don't click that one, click me" href="/another_page.zul"/>
    </navbar>
    

    Href and SendRedirect

    The href property is processed at the client. In other words, the browser will jump to the URL specified in the href property, so your application running on the server has no chance to process it.

    If you have to process it on the server or you have to decide whether to jump to another URL based on certain condition, you could listen to the onClick event, process it, and then invoke Executions.sendRedirect(String) if it jumps to another URL.

    For end users, there is no difference between the use of Navitem.setHref(String) and Executions.sendRedirect(String).

    <navbar>		
    	<navitem label="redirect" onClick="Executions.sendRedirect(&quot;another.zul&quot;)"/>
    	<navitem label="href" href="another.zul"/>
    </navbar>
    

    Since the onClick event is sent to the server for processing, you are able to perform additional tasks before invoking Executions.sendRedirect(String), such as redirecting to another page only if certain conditions are satisfied.

    On the other hand, the href property is processed at the client side. Your application won't be notified when users click the navitem.

    Badge Text

    Since 9.6.0

    This property set the badge text for the Navitem, it is used to present more details of Navitem.

    	<navitem label="Step One" badgeText="1"/>
    

    Supported Events

    Name
    Event Type
       

    Supported Children

    *NONE
    

    Use Cases

    Version Description Example Location
         

    Version History

    Last Update : 2022/01/18


    Version Date Content
    7.0.0 August, 2013 Navitem was introduced.



    Last Update : 2022/01/18

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