Nesting Custom Tags - MACROMEDIA COLDFUSION 4.5-DEVELOPING WEB Develop Manual

Developing web applications with coldfusion
Table of Contents

Advertisement

Chapter 7: Reusing Code

Nesting Custom Tags

ColdFusion lets you turn a custom tag into a special kind of container that can enclose
additional custom tags, which allows you to nest tags. Base tags are also know as
ancestors or parent tags, while the tags that base tags call are known as sub tags,
descendants, or child tags.
Terms to Describe the Relationship Between Nested Tags
Calling tag
base tag
ancestor
parent
You can create multiple levels of nesting by closing a sub tag. In this case, the sub tag
becomes the base tag for its own sub tags. Any tag with an end tag present can be an
ancestor to another tag.
Nested custom tags operate through three modes of processing, which are exposed to
the base tags through the variable ThisTag.ExecutionMode:
The start mode, in which the base tag is processed for the first time.
The inactive mode, in which sub tags and other code contained within the base
tag are processed.
No processing occurs in the base tag during this phase.
The end mode, in which the base tag is processed a second time.
Associating sub tags with the base tag
While the ability to create nested custom tags is a tremendous productivity gain,
keeping track of complex nested tag hierarchies can become a chore. A simple
mechanism, the CFASSOCIATE tag, lets the parent know what the children are up to.
By adding this tag to a sub tag, you enable communication of its attributes to the base
tag.
Tag that is nested
within the calling tag
sub tag
descendant
child
Notes
A base tag is an ancestor that
has been explicitly associated
with a descendant with
CFASSOCIATE.
An ancestor is any tag that
contains other tags between its
start and end tags.
"Parent" and "child" are
synonyms for "ancestor" and
"descendant."
77

Advertisement

Table of Contents
loading

This manual is also suitable for:

Coldfusion 4.5

Table of Contents