Nesting custom tags



A custom tag can call other custom tags from within its body text, thereby nesting tags. ColdFusion uses nested tags such as cfgraph and cfgraphdata, cfhttp and cfhttpparam, and cftree and cftreeitem. The ability to nest tags allows you to provide similar functionality.

The following example shows a cftreeitem tag nested within a cftree tag:

<cftree name="tree1"  
    required="Yes"  
    hscroll="No"> 
    <cftreeitem value=fullname 
        query="engquery" 
        queryasroot="Yes" 
        img="folder,document"> 
</cftree>

The calling tag is known as an ancestor, parent, or base tag; the tags that ancestor tags call are known as descendant, child, or sub tags. Together, the ancestor and all descendant tags are called collaborating tags.

In order to nest tags, the parent tag must have a closing tag.

The following table lists the terms that describe the relationships between nested tags:

Calling tag

Tag nested within the calling tag

Description

Ancestor

Descendant

An ancestor is any tag that contains other tags between its start and end tags. A descendant is any tag called by a tag.

Parent

Child

Parent and child are synonyms for ancestor and descendant.

Base tag

Sub tag

A base tag is an ancestor that you explicitly associate with a descendant, called a sub tag, with cfassociate.

You can create multiple levels of nested tags. 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.

Passing data between nested custom tags

A key custom tag feature is for collaborating custom tags to exchange complex data without user intervention, while encapsulating each tag’s implementation so that others cannot see it.

When you use nested tags, address the following issues:

  • What data must be accessible?

  • Which tags can communicate to which tags?

  • How are the source and targets of the data exchange identified?

  • What CFML mechanism is used for the data exchange?

What data is accessible?

To enable developers to obtain maximum productivity in an environment with few restrictions, CFML custom tags can expose all their data to collaborating tags.

When you develop custom tags, document all variables that collaborating tags can access and/or modify. When your custom tags collaborate with other custom tags,

make sure that they do not modify any undocumented data.

To preserve encapsulation, place all tag data access and modification operations in custom tags. For example, rather than documenting that the variable MyQueryResults in a tag's implementation holds a query result and expecting users to manipulate MyQueryResults directly, create a nested custom tag that manipulates MyQueryResult. This technique protects the users of the custom tag from changes in the tag's implementation.

Variable scopes and special variables

Use the Request scope for variables in nested tags. The Request scope is available to the base page, all pages it includes, all custom tag pages it calls, and all custom tag pages called by the included pages and custom tag pages. Collaborating custom tags that are not nested in a single tag can exchange data using the request structure. The Request scope is represented as a structure named Request.

Where is data accessible?

Two custom tags can be related in a variety of ways in a page. Ancestor and descendant relationships are important because they relate to the order of tag nesting.

A tag’s descendants are inactive while the page is executed; that is, the descendent tags have no instance data. A tag, therefore, can only access data from its ancestors, not its descendants. Ancestor data is available from the current page and from the whole runtime tag context stack. The tag context stack is the path from the current tag element up the hierarchy of nested tags, including those tags in included pages and custom tag references, to the start of the base page for the request. Both cfinclude tags and custom tags appear on the tag context stack.

High-level data exchange

Although the ability to create nested custom tags is a tremendous productivity gain, keeping track of complex nested tag hierarchies can become a chore. 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.

In addition, there are many cases in which descendant tags are used only as a means for data validation and exchange with an ancestor tag, such as cfhttp/cfhttpparam and cftreecftreeitem. You can use the cfassociate tag to encapsulate this processing.

The cfassociate tag has the following format:

<cfassociate baseTag="tagName" dataCollection="collectionName">

The baseTag attribute specifies the name of the base tag that gets access to this tag’s attributes. The dataCollection attribute specifies the name of the structure in which the base tag stores the subtag data. Its default value is AssocAttribs. ColdFusion requires a dataCollection attribute only if the base tag can have more than one type of subtag. It is convenient for keeping separate collections of attributes, one per tag type.

Note: If the custom tag requires an end tag, the code processing the structure referenced by the dataCollection attribute must be part of end-tag code.

When cfassociate is encountered in a sub tag, the sub tag’s attributes are automatically saved in the base tag. The attributes are in a structure appended to the end of an array whose name is thisTag.collectionName.

The cfassociate tag performs the following operations:

<!--- Get base tag instance data ---> 
    <cfset data = getBaseTagData(baseTag)> 
    <!--- Create a string with the attribute collection name ---> 
    <cfset collection_Name = "data.#dataCollection#"> 
    <!--- Create the attribute collection, if necessary ---> 
    <cfif not isDefined(collectionName)> 
        <cfset #collection_Name# = arrayNew(1)> 
    </cfif> 
    <!--- Append the current attributes to the array ---> 
    <cfset temp=arrayAppend(evaluate(collectionName), attributes)>

The code accessing subtag attributes in the base tag could look like the following:

<!--- Protect against no subtags ---> 
    <cfparam Name='thisTag.assocAttribs' default=#arrayNew(1)#> 
     
    <!--- Loop over the attribute sets of all sub tags ---> 
    <cfloop index=i from=1 to=#arrayLen(thisTag.assocAttribs)#> 
     
        <!--- Get the attributes structure ---> 
        <cfset subAttribs = thisTag.assocAttribs[i]> 
        <!--- Perform other operations ---> 
     
    </cfloop>

Ancestor data access

A structure object contains all the ancestor’s data.

The following functions provide access to ancestral data:

  • GetBaseTagList: Returns a comma-delimited list of uppercase ancestor tag names, as a string. The first list element is the current tag, the next element is the parent tag name if the current tag is a nested tag. If the function is called for a top-level tag, it returns an empty string.

  • GetBaseTagData, InstanceNumber=1): Returns an object that contains all the variables (not just the local variables) of the nth ancestor with a given name. By default, the closest ancestor is returned. If there is no ancestor by the given name, or if the ancestor does not expose any data (such as cfif), an exception is thrown.

Example: ancestor data access

This example creates two custom tags and a simple page that calls each of the custom tags. The first custom tag calls the second. The second tag reports on its status and provides information about its ancestors.

Create the calling page

  1. Create a ColdFusion page (the calling page) with the following content:

    Call cf_nesttag1 which calls cf_nesttag2<br> 
    <cf_nesttag1> 
    <hr> 
     
    Call cf_nesttag2 directly<br> 
    <cf_nesttag2> 
    <hr>
  2. Save the page as nesttest.cfm.

Create the first custom tag page

  1. Create a ColdFusion page with the following content:

    <cf_nesttag2>
  2. Save the page as nesttag1.cfm.

Create the second custom tag page

  1. Create a ColdFusion page with the following content:

    <cfif thisTag.executionmode is 'start'> 
        <!--- Get the tag context stack. The list looks something like  
        "MYTAGNAME, CALLINGTAGNAME, ..." ---> 
        <cfset ancestorlist = getbasetaglist()> 
     
        <!--- Output your own name. You are the first entry in the context stack. ---> 
        <cfoutput> 
        <p>I'm custom tag #ListGetAt(ancestorlist,1)#</p> 
         
        <!--- Output all the contents of the stack a line at a time. ---> 
        <cfloop index="loopcount" from="1" to="#listlen(ancestorlist)#"> 
            Ancestorlist entry #loopcount# n is #ListGetAt(ancestorlist,loopcount)#<br> 
        </cfloop><br> 
        </cfoutput> 
     
        <!--- Determine whether you are nested inside a custom tag. Skip the first 
            element of the ancestor list, i.e., the name of the custom tag I'm in. ---> 
        <cfset incustomtag = ''> 
        <cfloop index="elem"  
            list="#listrest(ancestorlist)#"> 
            <cfif (left(elem, 3) eq 'cf_')> 
                <cfset incustomtag = elem> 
                <cfbreak> 
            </cfif> 
        </cfloop> 
     
        <cfif incustomtag neq ''> 
            <!--- Say that you are there. ---> 
            <cfoutput> 
                I'm running in the context of a custom tag named #inCustomTag#.<p> 
            </cfoutput> 
             
            <!--- Get the tag instance data. ---> 
            <cfset tagdata = getbasetagdata(incustomtag)> 
             
            <!--- Find out the tag's execution mode. ---> 
            I'm located inside the 
            <cfif tagdata.thisTag.executionmode neq 'inactive'> 
                custom tag code either because it is in its start or end execution mode. 
            <cfelse> 
                body of the tag 
            </cfif> 
            <p> 
        <cfelse> 
            <!--- Say that you are lonely. ---> 
            I'm not nested inside any custom tags. :^( <p> 
        </cfif> 
    </cfif>
  2. Save the page as nesttag2.cfm.

  3. Open the file nesttest.cfm in your browser.