>- see footer for list info -<
Russ,

You can't group

<cfoutput query="blah" group="foo">
    <cfoutput query="blahblah">
    </cfoutput>
</cfoutput>

However, you can do this:

<cfoutput query="blah" group="foo">
     <cfoutput group="foobar">
          <cfoutput>
          </cfoutput>
     </cfoutput>
</cfoutput>

and also this (AFAIK):

<cfoutput>
     <cfoutput>
          <cfoutput>
          </cfoutput>
     </cfoutput>
</cfoutput>

which is the same as

<cfoutput>
</cfoutput>

Hope that helps.

Niklas



On 29/09/05, Snake <[EMAIL PROTECTED]> wrote:
> >- see footer for list info -<
> I can't believe CFMX still doesn't allow nested cfoutputs, but there you go.
>
> Inside a <cfoutput query="whatever">
> I then need to do a grouped output
> E.G
>
>  <cfoutput query="whatever" group="whatever">
>         #title#
>   <cfoutput>
>   #data#
>   </cfoutput>
>  </cfoutput>
>
> But CF wont allow this.
> Even if I replace the outer cfoutput with
>
> <cfloop query="whatever">
> <cfoutput>
>
> I still get this error.
> --
> Invalid tag nesting configuration.
> A query driven CFOUTPUT tag is nested inside a CFOUTPUT tag that also has a
> QUERY= attribute. This is not allowed. Nesting these tags implies that you
> want to use grouped processing. However, only the top-level tag can specify
> the query that drives the processing.
> --
>
> Anyone found a workaround to this, other than having to manually do the
> grouping.
>
> --
> Russ
>
>
> _______________________________________________
>
> For details on ALL mailing lists and for joining or leaving lists, go to 
> http://list.cfdeveloper.co.uk/mailman/listinfo
>
> --
> CFDeveloper Sponsors:-
> >- Hosting provided by www.cfmxhosting.co.uk -<
> >- Forum provided by www.fusetalk.com -<
> >- DHTML Menus provided by www.APYCOM.com -<
> >- Lists hosted by www.Gradwell.com -<
> >- CFdeveloper is run by Russ Michaels, feel free to volunteer your help -<
>


--
Niklas Richardson
Prismix Ltd

Flex and ColdFusion Experts!
_______________________________________________

For details on ALL mailing lists and for joining or leaving lists, go to 
http://list.cfdeveloper.co.uk/mailman/listinfo

--
CFDeveloper Sponsors:-
>- Hosting provided by www.cfmxhosting.co.uk -<
>- Forum provided by www.fusetalk.com -<
>- DHTML Menus provided by www.APYCOM.com -<
>- Lists hosted by www.Gradwell.com -<
>- CFdeveloper is run by Russ Michaels, feel free to volunteer your help -<

Reply via email to