org.zkoss.bind.appConverters"
From Documentation
m |
Robertwenzel (talk | contribs) m |
||
Line 3: | Line 3: | ||
'''Property:''' | '''Property:''' | ||
org.zkoss.bind.appConverters | org.zkoss.bind.appConverters | ||
+ | |||
+ | {{GlobalLibraryProperty}} | ||
Default: ''none'' | Default: ''none'' |
Revision as of 11:23, 7 July 2016
Property:
org.zkoss.bind.appConverters
Applicable: globally in zk.xml via <library-property> not as <custom-attribute>
Default: none [since 6.0.1]
- Available for ZK:
Register application level converters and only have one instance shard between all binders.
Sample usage: add the following settings in zk.xml:
<library-property>
<name>org.zkoss.bind.appConverters</name>
<value>foo=my.FooConverter,bar=my.BarConverter</value>
</library-property>
Then use them by converter name.
<label value="@load(vm.message) @converter('foo')"/>
<label value="@load(vm.message) @converter('bar')"/>
This is useful if the converter is required in many place.
Version History
Version | Date | Content |
---|---|---|
6.0.1 | May, 2012 | Introduced |