nested cfoutput?
hi,
i returning images , thumbs lines below
<cfdirectory action = "list" directory = "#expandpath("./../clients/#clientid#/images")#" name = "imageslist" filter="*.jpg">
<cfdirectory action = "list" directory = "#expandpath("./../clients/#clientid#/images/thumbs")#" name = "thumbslist" filter="*.jpg">
the problem cannot nest cfoutouts
<cfoutput query="imageslist">
<cfoutput query="thumbslist">
</cfoutput>
</cfoutout>
is there way either combine these or nest or better way.
thanks,
h.
cfoutput's cannot nested (there single case can nest
them: when want grouped output) cfloop's can:
<cfoutput query="..."> <cfloop query="..."> </cfloop> </cfoutput>
mack
More discussions in ColdFusion
adobe
Comments
Post a Comment