<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc = "http://purl.org/dc/elements/1.1/" xmlns="http://purl.org/rss/1.0/">
	<channel rdf:about="http://livedocs.adobe.com/">
	<title>LiveDocs Comments - coldfusion - 6 - CFML_Reference - Tags-pt211.htm</title>	
		<link>http://livedocs.adobe.com/</link>
		<description>Macromedia LiveDocs - online documentation with user feedback.</description>
		<copyright>Copyright 2009, Macromedia, Inc.</copyright>
		<dc:date>2009-11-25T00:02:46</dc:date>
		<dc:language>en-us</dc:language>
		<items>
			<rdf:Seq>
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#25704" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#20167" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#17390" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#3837" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#2984" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#523" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#488" />
			</rdf:Seq>
		</items>
	</channel>
	
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#25704">
		<title>coldfusion/6/CFML_Reference/Tags-pt211.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#25704</link>
		<description>I hope I'm not pointing out the obvious to most, but the way I handle nesting is I have CFOUPUT as my outer layer, and nested query output, I just use a CFLOOP with query attribute. This allows me with with unlimited nesting with full control.</description>
		<dc:creator></dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-12-21T11:28:24</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#20167">
		<title>coldfusion/6/CFML_Reference/Tags-pt211.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#20167</link>
		<description>I know there are many CF developers and reqular users who encounter the problem of nesting CFOUTPUT statements. If it's one thing I know from my experience, it's that there is a way to do (almost) anything, and adding the capability of nesting CFOUTPUT statements would greatly bolster CF's power.&lt;br /&gt;&lt;br /&gt;Specifically I am using a form to allow record editing. But I use a CFSELECT for a couple of fields. This should be possible. Thanks.</description>
		<dc:creator></dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-08-16T13:42:07</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#17390">
		<title>coldfusion/6/CFML_Reference/Tags-pt211.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#17390</link>
		<description>Interesting.  Displaying data is probably one of THE most common function a developer will build into their application and nobody in the CF house has got it right yet.  &lt;br /&gt;&lt;br /&gt;Since there is no clearcut way to nest cfoutputs say from two unrelated queries, I'll have to devise another cockeyed method to display my data.  &lt;br /&gt;&lt;br /&gt;In ASP I can use either method of dumping the data into an array then display it OR just pull it straight from the database by wrapping one layer of output over another as many times as necessary.  Either method took take less time to write than this comment will and both are as easy as the other.  &lt;br /&gt;&lt;br /&gt;CF, however, still - going on v6+ now, has not come close to making either method work properly (cfoutput or arrays) and I love spending hours and hours pouring through incomplete documentation to find I can't do what I need anyway.  I will say their documentation has improved since when I started with v3.  &lt;br /&gt;&lt;br /&gt;If I had my say in what is used to build my apps it would never be CF just because of the terrible time I have finding decent dev documentation, both here and throughout the web .  D minus guys!!</description>
		<dc:creator>evonbart</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-06-21T12:53:16</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#3837">
		<title>coldfusion/6/CFML_Reference/Tags-pt211.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#3837</link>
		<description>&lt;cfquery name=&quot;getBooks&quot; datasource=&quot;libraryDB&quot;&gt;&lt;br /&gt;select * from library order by genre;&lt;br /&gt;&lt;/cfquery&gt;&lt;br /&gt;&lt;cfoutput query=&quot;getBooks&quot; group=&quot;genre&quot;&gt;&lt;br /&gt;	&lt;b&gt;#genre#&lt;/b&gt;&lt;br&gt;&lt;br /&gt;	&lt;cfoutput&gt;&lt;br /&gt;		#ISBN#&lt;br&gt;&lt;br /&gt;		&lt;i&gt;#title#&lt;/i&gt;&lt;br&gt;&lt;br /&gt;		#author#&lt;br&gt;&lt;br /&gt;		&lt;br&gt;&lt;br /&gt;	&lt;/cfoutput&gt;&lt;br /&gt;&lt;/cfoutput&gt;&lt;br /&gt;&lt;br /&gt;-----------------------------------------------------------&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Childrens&lt;/b&gt;&lt;br&gt;&lt;br /&gt;	&lt;br /&gt;		0394823370&lt;br&gt;&lt;br /&gt;		&lt;i&gt;The Lorax&lt;/i&gt;&lt;br&gt;&lt;br /&gt;		Dr. Seuss&lt;br&gt;&lt;br /&gt;&lt;br /&gt;		&lt;br&gt;&lt;br /&gt;	&lt;br /&gt;		0679885722&lt;br&gt;&lt;br /&gt;		&lt;i&gt;Oh, Baby, the Places You'll Go&lt;/i&gt;&lt;br&gt;&lt;br /&gt;		Tish Rabe, Dr. Seuss&lt;br&gt;&lt;br /&gt;		&lt;br&gt;&lt;br /&gt;	&lt;br /&gt;&lt;br /&gt;	&lt;b&gt;Fiction&lt;/b&gt;&lt;br&gt;&lt;br /&gt;	&lt;br /&gt;		0380815931&lt;br&gt;&lt;br /&gt;&lt;br /&gt;		&lt;i&gt;In the Beginning...was the Command Line&lt;/i&gt;&lt;br&gt;&lt;br /&gt;		Neal Stephenson&lt;br&gt;&lt;br /&gt;		&lt;br&gt;&lt;br /&gt;	&lt;br /&gt;		0553380958&lt;br&gt;&lt;br /&gt;		&lt;i&gt;Snow Crash&lt;/i&gt;&lt;br&gt;&lt;br /&gt;		Neal Stephenson&lt;br&gt;&lt;br /&gt;&lt;br /&gt;		&lt;br&gt;&lt;br /&gt;	&lt;br /&gt;&lt;br /&gt;	&lt;b&gt;Reference&lt;/b&gt;&lt;br&gt;&lt;br /&gt;	&lt;br /&gt;		0596003803&lt;br&gt;&lt;br /&gt;		&lt;i&gt;Programming ColdFusion MX&lt;/i&gt;&lt;br&gt;&lt;br /&gt;		Rob Brooks-Bilson, Paula Ferguson (Editor)&lt;br&gt;&lt;br /&gt;		&lt;br&gt;&lt;br /&gt;	&lt;br /&gt;		0321125169&lt;br&gt;&lt;br /&gt;&lt;br /&gt;		&lt;i&gt;ColdFusion MX Web Application Construction Kit&lt;/i&gt;&lt;br&gt;&lt;br /&gt;		Ben Forta, Nate Weiss, Leon Chalnick, Angela Buraglia, With Angela C. Buraglia&lt;br&gt;&lt;br /&gt;		&lt;br&gt;&lt;br /&gt;	&lt;br /&gt;		0321180585&lt;br&gt;&lt;br /&gt;		&lt;i&gt;Certified Macromedia ColdFusion MX Developer Study Guide&lt;/i&gt;&lt;br&gt;&lt;br /&gt;		Ben Forta&lt;br&gt;&lt;br /&gt;&lt;br /&gt;		&lt;br&gt;</description>
		<dc:creator>eibhinn</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2003-11-14T10:30:47</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#2984">
		<title>coldfusion/6/CFML_Reference/Tags-pt211.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#2984</link>
		<description>In reference to the cfoutput tag description, the text states &quot;To nest cfoutput blocks, you must specify the group and query attributes at the top-most level, and the group attribute for each inner block except the innermost cfoutput block&quot;, but there is no example.&lt;br /&gt;This is the type of complex code example that should be included in the reference guide so that the user doesn't have to pull out other books to see it in action.</description>
		<dc:creator>LisaJ</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2003-10-21T13:14:25</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#523">
		<title>coldfusion/6/CFML_Reference/Tags-pt211.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#523</link>
		<description>I entered bug 46802 to update DWA and/or Eon examples.&lt;br&gt;See also forums, several comments and code examples on this:&lt;br&gt;Search cfoutput AND group&lt;br&gt;http://webforums.macromedia.com/coldfusion/&lt;br&gt;--Christina</description>
		<dc:creator>ctina</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2002-07-11T18:39:00</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#488">
		<title>coldfusion/6/CFML_Reference/Tags-pt211.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt211.htm#488</link>
		<description>Folks, in trying to help point someone to some docs on using CFOUTPUT with the GROUP attribute, I was surprised to find that I couldn't find any example of it in the docs. There's none shown here, and despite even doing a search using the search features on my local copy of the docs, I couldn't find any example in the &quot;Developing CF Apps&quot; book.&lt;br&gt;&lt;br&gt;Can you confirm if there is an example showing this elsewhere, and if so, offer a link here (in the comments and in future versions in the page itself). It's just not obvious to most folks how to interpret the instructions above about nesting CFOUTPUT within CFOUTPUT GROUP.&lt;br&gt;</description>
		<dc:creator>sgilson102</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2002-07-01T18:37:00</dc:date>
	</item>
	</rdf:RDF>

