nest - Defines a new level of nesting for child tags to reference to

This tag provides a simple method of defining a logical nesting level in the nested hierarchy. It run no explicit logic, is simply a place holder. It also means you can remove the need for explicit setting of level properties in child tags.

Just as the iterate tag provide a parent to other tags, this does the same but there is no logic for iterating or otherwise.

Example...

                        <nested:write property="myNestedLevel.propertyOne" />
                        <nested:write property="myNestedLevel.propertyTwo" />
                        <nested:write property="myNestedLevel.propertyThree" />
                    

Can instead become...

                        <nested:nest property="myNestedLevel" >
                        <nested:write property="propertyOne" />
                        <nested:write property="propertyTwo" />
                        <nested:write property="propertyThree" />
                        </nested:nest >
                    
Attribute Name Description
property This specifies the property by which this tag and all child tags will be relative to. [RT Expr]