User contributions
From Documentation
- 02:34, 8 July 2010 diff hist +80 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/param Created page with '== param - java.util.Map == A map of parameters of the request (String, String).'
- 02:32, 8 July 2010 diff hist +119 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/headerValues Created page with '== headerValues - java.util.Map == <source lang="xml" > A map of headers of the request. (String, String[]). </source>'
- 02:31, 8 July 2010 diff hist +79 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/header Created page with '== header - java.util.Map == A map of headers of the request. (String, String).'
- 02:31, 8 July 2010 diff hist +79 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/cookie Created page with '== cookie - java.util.Map == A map of cookies of the request. (String, Cookie).'
- 02:24, 8 July 2010 diff hist +155 N ZK ZUML Reference/EL Expressions/Using EL Expressions Created page with '== Using EL Expressions == EL expressions can be used * In static text * In any attribute's value including XML elements and XML processing instructions.'
- 02:19, 8 July 2010 diff hist +573 N ZUML Reference/ZUML/Attributes/use 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…'
- 02:17, 8 July 2010 diff hist +244 N ZUML Reference/ZUML/Attributes/unless Created page with '== The unless Attribute == unless="${''an-EL-expr''}" It specified the condition ''not'' to evaluate the associated element. In other words, the associated element and all its …'
- 02:16, 8 July 2010 diff hist +578 N ZUML Reference/ZUML/Attributes/if Created page with '== The if Attribute == if="${''an-EL-expr''}" It specified the condition to evaluate the associated element. In other words, the associated element and all its child elements a…'
- 02:15, 8 July 2010 diff hist +1,515 N ZUML Reference/ZUML/Attributes/fulfill Created page with '== The fulfill Attribute == fulfill="''event-name''" fulfill="''target-id''.''event-name''" fulfill="''id1/id2/id3''.''event-name''" fulfill="${''el-expr''}.''event-name''" …'
- 02:14, 8 July 2010 diff hist +1,385 N ZUML Reference/ZUML/Attributes/forward Created page with '== The forward Attribute == forward="orginalEvent=targetId1/targetId2.targetEvent" forward="orginalEvent=targetId1/targetId2.targetEvent(eventData)" forward="originalEvent=${e…'
- 02:14, 8 July 2010 diff hist +366 N ZUML Reference/ZUML/Attributes/forEachEnd Created page with '== The forEachEnd Attribute == forEachEnd="${''an-EL-expr''}" It is used with the <tt>forEach</tt> attribute to specify the index (starting from 0) the iteration shall ends at …'
- 02:13, 8 July 2010 diff hist +474 N ZUML Reference/ZUML/Attributes/forEachBegin Created page with '== The forEachBegin Attribute == forEachBegin="${''an-EL-expr''}" It is used with the <tt>forEach</tt> attribute to specify the index (starting from 0) that the iteration shall…'
- 02:12, 8 July 2010 diff hist +1,259 N ZUML Reference/ZUML/Attributes/forEach Created page with '== The forEach Attribute == forEach="${''an-EL-expr''}" forEach="''an-value'', ${''an-EL-expr''}" There are two formats. First, you specify a value without comma. The value is…'
- 02:11, 8 July 2010 diff hist +1,178 N ZUML Reference/ZUML/Attributes/apply Created page with '== The apply Attribute == apply="a-class-name" apply="class1, class2,..." apply="${EL_returns_a_class_or_a_collection_of_classes}" apply="${EL_returns_an_instance_or_a_collec…'
- 02:09, 8 July 2010 diff hist +4,141 N ZUML Reference/ZUML/Elements/zscript Created page with '== The zscript Element == <source lang="xml" > <zscript [language="Java|JavaScript|Ruby|Groovy"]>''Scripting codes''</zscript> <zscript src="''uri''" [language="Java|JavaScrip…'
- 02:08, 8 July 2010 diff hist +4,259 N ZUML Reference/ZUML/Elements/zk Created page with '== The zk Element == <source lang="xml" > <zk>...</zk> </source> It is a special element used to aggregate other components. Unlike a real component (say, <tt>hbox</tt> or <tt…'
- 02:07, 8 July 2010 diff hist +2,608 N ZUML Reference/ZUML/Elements/variables Created page with '== The variables Element == <source lang="xml" > <variables [local="'''false'''|true] ''var1''="''value1''" [''var2''="''value2''"...]/> </source> It defines a set of variable…'
- 02:07, 8 July 2010 diff hist +2,254 N ZUML Reference/ZUML/Elements/custom-attributes Created page with '== The custom-attributes Element == <source lang="xml" > <custom-attributes [scope="'''component'''|space|page|desktop|session|application] ''attr1''="''value1''" [''…'
- 02:06, 8 July 2010 diff hist +2,045 N ZUML Reference/ZUML/Elements/attribute Created page with '== The attribute Element == <source lang="xml" > <attribute name="''myName''" [trim="true|'''false'''"]>''myValue''</attribute> </source> It defines a XML attribute of the enc…'
- 02:05, 8 July 2010 diff hist +231 N ZK ZUML Reference/The ZK User Interface Markup Language/ZK Elements/The ZK Namespace Created page with '== The XML Namespace == If there is name conflicts, you could specify the XML name space: http://www.zkoss.org/2005/zk <source lang="xml" > <nowiki><zk:attribute xmlns:zk="<…'
- 02:02, 8 July 2010 diff hist +905 N ZUML Reference/ZUML/Processing Instructions/xel-method Created page with '== The xel-method Directive == <source lang="xml" > <?xel-method prefix="..." name="..." class="..." signature="..."?> </source> Specifies a method that shall be imported by …'
- 02:01, 8 July 2010 diff hist +2,196 N ZUML Reference/ZUML/Processing Instructions/variable-resolver Created page with '== The variable-resolver Directive == <source lang="xml" > <?variable-resolver class="..." [arg0="..."] [arg1="..."] [arg2="..."] [arg3="..."]?> </source> Specifies the va…'
- 02:00, 8 July 2010 diff hist +2,244 N ZUML Reference/ZUML/Processing Instructions/taglib Created page with '== The taglib Directive == <source lang="xml" > <?tablib uri="''myURI''" prefix="''my''"?> </source> This directive is used to load a <tt>taglib</tt> file, which defines a set…'
- 01:59, 8 July 2010 diff hist +1,194 N ZUML Reference/ZUML/Processing Instructions/root-attributes Created page with '== The root-attributes Directive == <source lang="xml" > <?root-attributes any-name1="any-value2" any-name2="any-value2"?> </source> It specifies the additional attributes fo…'
- 01:58, 8 July 2010 diff hist +6,858 N ZUML Reference/ZUML/Processing Instructions/page Created page with '== The page Directive == <source lang="xml" > <?page [id="..."] [title="..."] [style="..."] [cacheable="false|true"] [language="xul/html"] [zscriptLanguage="Java"] [conte…'
- 01:56, 8 July 2010 diff hist +867 N ZUML Reference/ZUML/Processing Instructions/header Created page with '== The header Directive == <source lang="xml" > <?header name="..." value="..." [append="true|false"] [if="..."] [unless="..."] ?> </source> [since 5.0.2] Specifies a respon…'
- 01:55, 8 July 2010 diff hist +1,715 N ZUML Reference/ZUML/Processing Instructions/link Created page with '== The link, meta and script Directives == <source lang="xml" > <?link [href="uri"] [''name0''="''value0''"] [''name1''="''value1''"] [''name2''="''value2''"] [if="..."] [unles…'
- 01:53, 8 July 2010 diff hist +2,223 N ZUML Reference/ZUML/Processing Instructions/init Created page with '== The init Directive == <source lang="xml" > <?init class="..." [arg0="..."] [arg1="..."] [arg2="..."] [arg3="..."]?> <?init zscript="..."?> </source> There are two formats.…'
- 01:51, 8 July 2010 diff hist +2,488 N ZUML Reference/ZUML/Processing Instructions/import Created page with '== The import Directive == <source lang="xml" > <?import uri="..."?> <?import uri="..." directives="..."?> </source> It imports the directives, such as component definitions …'
- 01:50, 8 July 2010 diff hist +1,753 N ZUML Reference/ZUML/Processing Instructions/function-mapper Created page with '== The function-mapper Directive == <source lang="xml" > <?function-mapper class="..." [arg0="..."] [arg1="..."] [arg2="..."] [arg3="..."]?> </source> Specifies the functi…'
- 01:47, 8 July 2010 diff hist +1,622 N ZUML Reference/ZUML/Processing Instructions/forward Created page with '== The forward Directive == <source lang="xml" > <?forward uri="..." [if="..."] [unless="..."]?> </source> It specifies the URI to forward the request to, and the condition to…'
- 01:45, 8 July 2010 diff hist +3,790 N ZUML Reference/ZUML/Processing Instructions/evaluator Created page with '== The evaluator Directive == <source lang="xml" > <?evaluator [name="..."] [class="..."] [import="..."]?> </source> It specifies how to evaluate XEL expressions. == name == …'
- 01:44, 8 July 2010 diff hist +7,282 N ZUML Reference/ZUML/Processing Instructions/component Created page with '== The component Directive == <?component name="''myName''" macroURI="''/mypath/my.zul''" [inline="true|'''false'''"] [apply="''composer''"] [''prop1''="''value1''"] [''prop…'
- 01:41, 8 July 2010 diff hist +115 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/spaceScope Created page with '== spaceScope - java.util.Map == A map of custom attributes associated with the ID space containing this component.'
- 01:40, 8 July 2010 diff hist +121 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/spaceOwner Created page with '== spaceOwner - org.zkoss.zk.ui.IdSpace == The space owner of this component. It is the same as <tt>self.spaceOwner</tt>.'
- 01:39, 8 July 2010 diff hist +414 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/sessionScope Created page with '== sessionScope - java.util.Map == A map of custom attributes associated with the session. It is the same as the <tt>getAttributes</tt> method in the <tt>org.zkoss.zk.ui.Session<…'
- 01:38, 8 July 2010 diff hist +237 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/session Created page with '== session - org.zkoss.zk.ui.Session == The session. It is similar to <tt>javax.servlet.http.HttpSession<ref>ZK session actually encapsulates the HTTP session to make ZK applicat…'
- 01:38, 8 July 2010 diff hist +389 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/self Created page with '== self - org.zkoss.zk.ui.Component == The component itself. In other words, it is the closest component, depicted as follows. <source lang="xml" > <listbox> <zscript>self.g…'
- 01:37, 8 July 2010 diff hist +203 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/requestScope Created page with '== requestScope – java.util.Map == A map of custom attributes associated with the current execution. It is the same as <tt>getAttributes</tt> method in the <tt>org.zkoss.zk.ui.…'
- 01:36, 8 July 2010 diff hist +192 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/pageScope Created page with '== pageScope - java.util.Map == A map of custom attributes associated with the current page. It is the same as the <tt>getAttributes</tt> method in the <tt>org.zkoss.zk.ui.Page</…'
- 01:34, 8 July 2010 diff hist +153 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/pageContext Created page with '== pageContext – org.zkoss.web.servlet.xel.PageContext == The current page context used to retrieve the request, response, variable resolver and so on.'
- 01:33, 8 July 2010 diff hist +89 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/page Created page with '== page - org.zkoss.zk.ui.Page == The current page. It is the same as <tt>self.page</tt>.'
- 01:32, 8 July 2010 diff hist +671 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/forEachStatus Created page with '== forEachStatus – org.zkoss.zk.ui.util.ForEachStatus == The status of an iteration. ZK exposes the information relative to the iteration taking place when evaluating the itera…'
- 01:31, 8 July 2010 diff hist +68 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/execution Created page with '== execution – org.zkoss.zk.ui.Execution == The current execution.'
- 01:30, 8 July 2010 diff hist +353 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/event Created page with '=== event - org.zkoss.zk.ui.event.Event or derived === The current event. Available for the event listener only. <source lang="xml" > <textbox onChanging="react(event.value)" />…'
- 01:29, 8 July 2010 diff hist +303 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/each Created page with '== each - java.lang.Object == The current item of the collection being iterated, when ZK evaluates an iterative element. An iterative element is an element with the forEach attri…'
- 01:28, 8 July 2010 diff hist +260 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/desktopScope Created page with '== desktopScope - java.util.Map == A map of custom attributes associated with the desktop. It is the same as the <tt>getAttributes</tt> method in the <tt>org.zkoss.zk.ui.Desktop<…'
- 01:22, 8 July 2010 diff hist +161 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/desktop Created page with '== desktop - org.zkoss.zk.ui.Desktop == The current desktop. It is the same as <tt>self.desktop</tt>. <source lang="java" > desktop.getPage("main"); </source>'
- 01:20, 8 July 2010 diff hist +199 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/componentScope Created page with '== componentScope - java.util.Map == A map of custom attributes associated with the component. It is the same as the <tt>getAttributes</tt> method in the <tt>org.zkoss.zk.ui.Comp…'
- 01:14, 8 July 2010 diff hist +915 N ZUML Reference/EL Expressions/Implicit Objects (Predefined Variables)/arg Created page with '== arg - java.util.Map == The <tt>arg</tt> argument passed to the <tt>createComponents</tt> method in the <tt>org.zkoss.zk.ui.Executions</tt> class. It might be <tt>null</tt>, de…'