Annotate Component Definitions"
From Documentation
m |
|||
Line 1: | Line 1: | ||
{{ZKDevelopersReferencePageHeader}} | {{ZKDevelopersReferencePageHeader}} | ||
− | In | + | In addition to annotating a component or its properties, you could annotate a component definition, such that all its instances will have the annotations. |
To annotate a component definition, you have to specify the annotations in [[ZK Client-side Reference/Language Definition|a language definition]]. For example, we could extend the definition of bandbox to add annotations. | To annotate a component definition, you have to specify the annotations in [[ZK Client-side Reference/Language Definition|a language definition]]. For example, we could extend the definition of bandbox to add annotations. |
Revision as of 01:12, 25 July 2011
In addition to annotating a component or its properties, you could annotate a component definition, such that all its instances will have the annotations.
To annotate a component definition, you have to specify the annotations in a language definition. For example, we could extend the definition of bandbox to add annotations.
<component>
<component-name>bandbox</component-name>
<extends>bandbox</extends>
<annotation>
<annotation-name>default-bind</annotation-name>
<property-name>value</property-name>
<attribute>
<attribute-name>access</attribute-name>
<attribute-value>both</attribute-value>
</attribute>
<attribute>
<attribute-name>save-when</attribute-name>
<attribute-value>self.onChange</attribute-value>
</attribute>
</annotation>
</component>
Version History
Version | Date | Content |
---|---|---|