|  | Plumtree Portal UI | |
| RequiredParentTag Constructor |
Creates a new required parent tag meta data object.
If a tag class requires a specific parent tag in order to function, the class needs to have at least one public static final RequiredParentTag member variable that specifies the required parent tag.
If this tag is used outside of the required parent tag, an error will be logged and the tag and its children will be skipped and not displayed. An HTML Comment describing the tag and error will be displayed instead.
If multiple required parent tags are specified, then at least one required parent tag must be present for the tag to function.
I.E. If thistag requires parenttag to be present, then
<pt:parenttag><pt:thistag/></pt:parenttag>
will work, but
<pt:thistag/>
will not work, because thistag is required to be inside of parenttag.
Parameters
- _TagData
- The related child tag data
See Also
RequiredParentTag Class | com.plumtree.portaluiinfrastructure.tags.metadata Namespace