@ExecutionArgParam"
From Documentation
(Created page with "{{ZKDevelopersReferencePageHeader}} =Syntax= <source lang="java"> @ExecutionArgParam("keyString") </source> = Description = '''Target:''' A method's parameter (initial method ...") |
|||
Line 55: | Line 55: | ||
* The label will display "foo". | * The label will display "foo". | ||
+ | |||
+ | |||
+ | |||
+ | =Version History= | ||
+ | {{LastUpdated}} | ||
+ | {| border='1px' | width="100%" | ||
+ | ! Version !! Date !! Content | ||
+ | |- | ||
+ | | 6.0.0 | ||
+ | | February 2012 | ||
+ | | The MVVM was introduced. | ||
+ | |} | ||
Revision as of 01:51, 9 February 2012
Syntax
@ExecutionArgParam("keyString")
Description
Target: A method's parameter (initial method and command method)
Purpose: Tell binder to retrieve this parameter with specified key from current execution's argument.
The annotation is applied to initial method's (or command method's) parameter. It declare the applied parameter should come from current execution's argument with specified key.
Example
Assume we want to pass an argument to an included ZUL that uses a ViewModel: ExecutionParamVM.
outer ZUL
<window >
<include arg1="foo" src="executionparam-inner.zul"/>
</window>
We use annotation to retrieve execution's argument with key "arg1".
public class ExecutionParamVM {
private String arg1;
@Init
public void init(@ExecutionArgParam("arg1") String arg1){
this.arg1 = arg1;
}
//setter, getter, and others
}
executionparam-inner.zul
<vbox apply="org.zkoss.bind.BindComposer" viewModel="@id('vm') @init('foo.ExecutionParamVM')">
<label value="@load(vm.arg1)"/>
</vbox>
- The label will display "foo".
Version History
Version | Date | Content |
---|---|---|
6.0.0 | February 2012 | The MVVM was introduced. |