Skip to content
Kyle Stiemann edited this page Aug 25, 2015 · 1 revision

Since (v1.2+)

The vdldoc:since element can be used to display version information to developers.

Example taglib.xml usage:

<tag>
    ...
    <description>This is a:newTag.</description>
    <tag-name>newTag</tag-name>
    ...
    <tag-extension>
        ...
        <vdldoc:since>2.2.6</vdldoc:since>
        ...
    </tag-extension>
    ...
</tag>

Example composite component usage:

<cc:interface shortDescription="This is a:newTag.">
    ...
    <cc:extension>
        ...
        <vdldoc:since value="2.2.6" />
        ...
    </cc:extension>
    ...
</cc:interface>

Sample Tag Page Output:

...

Tag newTag

...

Since:

      2.2.6

...