At 09:20 AM 08/04/00, you wrote:
>how we can group two output. one is nested under other.

If I understand what you're asking, you can't do nested cfoutputs unless 
you group the first one like so:

<TABLE>
<TR>
     <TD colspan="2" align="center"><B>Failure Terminology</B></TD>
</TR>
    <CFOUTPUT query="failcodes" group="Category">
<TR>
    <TD colspan="2"><B>#failcodes.Category#</B></TD>
</TR>
   <CFOUTPUT>
<TR>
     <TD>#failcodes.FailID#</TD>
     <TD>#failcodes.FailDesc#</TD>
</TR>
</CFOUTPUT>
</CFOUTPUT>
</TABLE>

------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to