I have a query with columns like this like this....

Category        SubCategory     SubSubcategory  Name

And I'm trying to accomplish an output similar to this.


Category
        SubCategory
                SubSubCategory
                        Name
                        Name
                        Name

Category
        SubCategory
                SubSubCategory
                        Name
                        Name
                        Name


etc...

Can I nest <cfoutput> groups like this?


<cfoutput query="myQuery" group="category">
#category#

        <cfoutput query="myQuery" group="subcategory">
        #subcategory#
                
                <cfoutput query="myQuery" group="subsubcategory">
                #subsubcategory#

                        <cfoutput>#name#</cfoutput>

                </cfoutput>

        </cfoutput>

</cfoutput>


Thanks :)

Eric

______________________________________________________________________
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to