use"

From Documentation
(Created page with '== The use Attribute == use="''a-class-name''" use="${EL_returns_a_class_or_a_class_name}" use="${a_component}" (since 3.6.0) It specifies a class to create a component inste…')
 
m (correct highlight (via JWB))
 
(11 intermediate revisions by 4 users not shown)
Line 1: Line 1:
== The use Attribute ==
+
{{ZUMLReferencePageHeader}}
 +
 
 +
'''Syntax:'''
 
  use="''a-class-name''"
 
  use="''a-class-name''"
  use="${EL_returns_a_class_or_a_class_name}"
+
  use="${''EL_returns_a_class_or_a_class_name''}"
  use="${a_component}" (since 3.6.0)
+
  use="${''a_component''}"
  
It specifies a class to create a component instead of the default one. In the following example, <tt>MyWindow</tt> is used instead of the default class, <tt>org.zkoss.zul.html.Window</tt>.
+
It specifies a class to create a component instead of the default one. In the following example, <code>MyWindow</code> is used instead of the default class, <javadoc type="interface">org.zkoss.zul.Window</javadoc>.
  
 
<source lang="xml" >
 
<source lang="xml" >
<window use="MyWindow"/>
+
<window use="MyWindow"/>
 
</source>
 
</source>
  
 
If an EL expression is used, it can return a class name, a class instance, or a component instance.
 
If an EL expression is used, it can return a class name, a class instance, or a component instance.
Notice that, if the expression returns a component, the component shall not belong to any page.
+
Notice that, if the expression returns a component, the component should not belong to any pages.
 +
 
 +
=Version History=
 +
 
 +
{| border='1px' | width="100%"
 +
! Version !! Date !! Content
 +
|-
 +
| &nbsp;
 +
| &nbsp;
 +
| &nbsp;
 +
|}
 +
 
 +
{{ZUMLReferencePageFooter}}

Latest revision as of 13:27, 19 January 2022

Syntax:

use="a-class-name"
use="${EL_returns_a_class_or_a_class_name}"
use="${a_component}"

It specifies a class to create a component instead of the default one. In the following example, MyWindow is used instead of the default class, Window.

<window use="MyWindow"/>

If an EL expression is used, it can return a class name, a class instance, or a component instance. Notice that, if the expression returns a component, the component should not belong to any pages.

Version History

Version Date Content
     



Last Update : 2022/01/19

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