ZATS ConnectAsIncluded"
From Documentation
Line 5: | Line 5: | ||
= Connect as Included = | = Connect as Included = | ||
− | ZK provides the <javadoc>org.zkoss.zul.Include</javadoc> component allows us to include or reuse ZUL page or others.<ref>For more details, please refer to [[ZK_Developer%27s_Reference/UI_Composing/ZUML/Include]] and [[ZK_Component_Reference/Essential_Components/Include]]</ref> | + | ZK provides the <javadoc>org.zkoss.zul.Include</javadoc> component allows us to include or reuse ZUL page or others.<ref>For more details, please refer to [[ZK_Developer%27s_Reference/UI_Composing/ZUML/Include]] and [[ZK_Component_Reference/Essential_Components/Include]]</ref> We can directly test a ZUL page which is included by outer pages; just connect to such ZUL through the <tt>Client.connect(String)</tt> method as usual. |
+ | Sometimes, we pass some arguments to included ZUL pages for flexibility purpose, and the arguments can be retrieved from the implicit objects [[ZUML_Reference/EL_Expressions/Implicit_Objects/arg]] inside of ZUL pages. | ||
Revision as of 03:53, 5 July 2012
Since 1.1.0
Connect as Included
ZK provides the Include component allows us to include or reuse ZUL page or others.[1] We can directly test a ZUL page which is included by outer pages; just connect to such ZUL through the Client.connect(String) method as usual. Sometimes, we pass some arguments to included ZUL pages for flexibility purpose, and the arguments can be retrieved from the implicit objects ZUML_Reference/EL_Expressions/Implicit_Objects/arg inside of ZUL pages.
Notes
- ↑ For more details, please refer to ZK_Developer's_Reference/UI_Composing/ZUML/Include and ZK_Component_Reference/Essential_Components/Include
Including with Defer Mode
There is no different between testing a normal ZUL or testing a included ZUL directly. We can just use the normal Client.connect(String url) method to connect ZUL.