<?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 - 7 - htmldocs - 00000309.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-25T22:34:48</dc:date>
		<dc:language>en-us</dc:language>
		<items>
			<rdf:Seq>
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#62547" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#52178" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#52030" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#44066" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#36074" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#30449" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#30100" />
			</rdf:Seq>
		</items>
	</channel>
	
	<item rdf:about="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#62547">
		<title>coldfusion/7/htmldocs/00000309.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#62547</link>
		<description>Despite the documentation, it appears that nesting &lt;cfoutput&gt; tags without the group atttribute seems to work fine. Por ejemplo:&lt;br /&gt;&lt;br /&gt;&lt;cfoutput&gt;&lt;br /&gt;  On #DateFormat(Now(), &quot;MM/DD/YYYY&quot;)# I gave away &lt;br /&gt;  &lt;cfoutput&gt;&lt;br /&gt;    the random number #Rand()# for free&lt;br /&gt;  &lt;/cfoutput&gt;&lt;br /&gt;&lt;/cfoutput&gt;</description>
		<dc:creator>i69alot</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2007-02-18T19:21:34</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#52178">
		<title>coldfusion/7/htmldocs/00000309.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#52178</link>
		<description>The default value for groupCaseSensitive attribute appears to be incorrect. I had to add groupCaseSensitive=&quot;yes&quot; to do case sensitive grouping</description>
		<dc:creator></dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2006-08-23T09:46:33</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#52030">
		<title>coldfusion/7/htmldocs/00000309.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#52030</link>
		<description>cfoutput also supports a java.sql.ResultSet object as its query attribute.  It is not documented here, but it is a very useful feature as it can help streaming very long queries to the output stream.  However, I'd like to know how will it behave when combined with the group attribute, as I am having some memory problems related with that, specifically if cfoutput will populate a Query object from the jdbc ResultSet or will use it plain when combined with the group attribute.</description>
		<dc:creator>danimx</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2006-08-18T08:42:47</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#44066">
		<title>coldfusion/7/htmldocs/00000309.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#44066</link>
		<description>It seems that when using the &quot;group&quot; attribute in this tag, the &quot;maxrows&quot; attribute pertains to the group rows.&lt;br /&gt;&lt;br /&gt;For instance, a developer uses a cfoutput tag  to display the contents of a query with a record count of 50.  If the developer sets the group attribute to the field &quot;Department&quot; and there are 25 unique values for this field, and the the maxrows attribute was set to 25, all 50 records will show.&lt;br /&gt;&lt;br /&gt;If the developer uses a Next-N feature and uses the startrow attribute (set to 26), this does not pertain the group rows, but rather to record count 26.  This seems to be both advantageous and disadvantageous; it might also seem inconsitent without better supporting documentation.</description>
		<dc:creator>WCCinPrinceton</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2006-01-10T17:10:56</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#36074">
		<title>coldfusion/7/htmldocs/00000309.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#36074</link>
		<description>About the rows, that's just not true.   CF outputs data sequentially, the only thing that is row-based in HTML tables.   I suppose it would be possible for Macromedia to automatically rearrange your HTML for you, but you wouldn't have as much control.   Actually, I'd also be unhappy with it because screen-readers and text browsers go through items in the order they're present in the HTML, which in HTML tables  is always across rows.   So it's better for you to make more complicated tables.&lt;br /&gt;&lt;br /&gt;For example, to make a 3 column &quot;row based&quot; table you probably have code something like:&lt;br /&gt;&lt;table&gt; &lt;tr&gt; &lt;cfloutput query=&quot;myquery&gt;&lt;br /&gt;&lt;td&gt; #output# &lt;/td&gt;  &lt;br /&gt;&lt;cfif currentrow MOD  3  eq 0 &gt; &lt;br /&gt;&lt;/tr&gt; &lt;tr&gt;&lt;br /&gt;&lt;/cfif&gt;&lt;br /&gt;&lt;/cfoutput&gt;&lt;br /&gt;&lt;/tr&gt; &lt;/table&gt;&lt;br /&gt;&lt;br /&gt;To use columns instead,   just  nest single-column tables inside a single-row table.&lt;br /&gt;&lt;table&gt; &lt;tr&gt; &lt;td&gt; &lt;table&gt; &lt;br /&gt; &lt;cfloutput query=&quot;myquery&gt;&lt;br /&gt;&lt;tr&gt; &lt;td&gt; #output#   &lt;/td&gt; &lt;/tr&gt;&lt;br /&gt;&lt;cfif currentrow MOD  3  eq 0 &gt; &lt;br /&gt;&lt;/table&gt; &lt;/td&gt; &lt;td&gt; &lt;table&gt;&lt;br /&gt;&lt;/cfif&gt;&lt;br /&gt;&lt;/cfoutput&gt;&lt;br /&gt;&lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Obviously, the MOD 3 part isn't the focus of this code - but you said it worked for you the other way...  the focus is on the part that's DIFFERENT.&lt;br /&gt;&lt;br /&gt;Ben&lt;br /&gt;Freelance CFML and Actionscript, etc. .  ben.macromedia.2005jun29 ATNOSPAM xig.net</description>
		<dc:creator>xigarete</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2005-06-28T23:51:31</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#30449">
		<title>coldfusion/7/htmldocs/00000309.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#30449</link>
		<description>dspent:&lt;br&gt;I have entered enhancement request number 59989 for this issue.</description>
		<dc:creator>jrunrandy</dc:creator>
		<dc:type>1 1</dc:type>
		<dc:date>2005-03-28T07:36:05</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#30100">
		<title>coldfusion/7/htmldocs/00000309.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/7/htmldocs/00000309.htm#30100</link>
		<description>why does cfoutput only output information in rows?&lt;br /&gt;&lt;br /&gt;I want to have an output of my query data like:&lt;br /&gt;&lt;br /&gt;1 4 7&lt;br /&gt;2 5 8&lt;br /&gt;3 6 9&lt;br /&gt;&lt;br /&gt;but I can only get&lt;br /&gt;&lt;br /&gt;1 2 3&lt;br /&gt;4 5 6&lt;br /&gt;7 8 9&lt;br /&gt;&lt;br /&gt;This continues to be a major headache with coldfusion.</description>
		<dc:creator>dspent</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2005-03-17T14:08:00</dc:date>
	</item>
	</rdf:RDF>

