Does anyone know if there is an attributes collection that I can access
inside the custom tag so I can loop through all the attributes passed to me?
For example if the main template has

<Cf_test name="test" value="10">

instead of saying 

<CFOUTPUT>
        #Attributes.name# #attributes.value#
</CFOUTPUT>

I could say 

<CFOUTPUT>
        <CFLOOP collection="attributes" item="att">
                #att# 
        </CFLOOP>
</CFOUTPUT>

Is there such collection of some sort that exists inside the custom tag?

Ruslan Sivak
Technologist
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to