<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Determining a DataGridColumn object&#8217;s current sort order</title>
	<atom:link href="http://blog.flexexamples.com/2007/08/23/determining-a-datagridcolumn-objects-current-sort-order/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2007/08/23/determining-a-datagridcolumn-objects-current-sort-order/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Sun, 12 Feb 2012 14:19:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Yayo</title>
		<link>http://blog.flexexamples.com/2007/08/23/determining-a-datagridcolumn-objects-current-sort-order/comment-page-1/#comment-9011</link>
		<dc:creator>Yayo</dc:creator>
		<pubDate>Wed, 02 Mar 2011 11:49:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/23/determining-a-datagridcolumn-objects-current-sort-order/#comment-9011</guid>
		<description>Thanx for sharing...</description>
		<content:encoded><![CDATA[<p>Thanx for sharing&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramendra</title>
		<link>http://blog.flexexamples.com/2007/08/23/determining-a-datagridcolumn-objects-current-sort-order/comment-page-1/#comment-7737</link>
		<dc:creator>Ramendra</dc:creator>
		<pubDate>Tue, 18 May 2010 09:13:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/23/determining-a-datagridcolumn-objects-current-sort-order/#comment-7737</guid>
		<description>Peter you provided a very good solution,
thanx for this woderful help !!</description>
		<content:encoded><![CDATA[<p>Peter you provided a very good solution,<br />
thanx for this woderful help !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ani</title>
		<link>http://blog.flexexamples.com/2007/08/23/determining-a-datagridcolumn-objects-current-sort-order/comment-page-1/#comment-6432</link>
		<dc:creator>Ani</dc:creator>
		<pubDate>Mon, 23 Nov 2009 20:58:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/23/determining-a-datagridcolumn-objects-current-sort-order/#comment-6432</guid>
		<description>I was facing the problem as mentioned in the other post.
This callLater way was helpfull.
Thanks,
Anil</description>
		<content:encoded><![CDATA[<p>I was facing the problem as mentioned in the other post.<br />
This callLater way was helpfull.<br />
Thanks,<br />
Anil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vidya</title>
		<link>http://blog.flexexamples.com/2007/08/23/determining-a-datagridcolumn-objects-current-sort-order/comment-page-1/#comment-6232</link>
		<dc:creator>vidya</dc:creator>
		<pubDate>Wed, 04 Nov 2009 14:53:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/23/determining-a-datagridcolumn-objects-current-sort-order/#comment-6232</guid>
		<description>good coding...n useful too</description>
		<content:encoded><![CDATA[<p>good coding&#8230;n useful too</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://blog.flexexamples.com/2007/08/23/determining-a-datagridcolumn-objects-current-sort-order/comment-page-1/#comment-795</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Wed, 10 Sep 2008 18:55:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/23/determining-a-datagridcolumn-objects-current-sort-order/#comment-795</guid>
		<description>Dan -

Turns out doing it that way cause inaccuracies, for some reason sortDecending will report false too often.  Checkout this post:

http://blog.flexexamples.com/2007/08/31/toggling-sortable-columns-in-a-flex-datagrid-control/#comment-4653</description>
		<content:encoded><![CDATA[<p>Dan -</p>
<p>Turns out doing it that way cause inaccuracies, for some reason sortDecending will report false too often.  Checkout this post:</p>
<p><a href="http://blog.flexexamples.com/2007/08/31/toggling-sortable-columns-in-a-flex-datagrid-control/#comment-4653" rel="nofollow">http://blog.flexexamples.com/2007/08/31/toggling-sortable-columns-in-a-flex-datagrid-control/#comment-4653</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://blog.flexexamples.com/2007/08/23/determining-a-datagridcolumn-objects-current-sort-order/comment-page-1/#comment-794</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 28 Apr 2008 19:46:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/23/determining-a-datagridcolumn-objects-current-sort-order/#comment-794</guid>
		<description>I think this would work and you do not have to make a callLater method.....


private function doHeaderRelease(event:DataGridEvent):void {
	var dg:DataGrid= event.currentTarget as DataGrid;

	trace(&quot;column: &quot; + String(event.dataField));
	trace(&quot;descending: &quot; + String(dg.columns[event.columnIndex].sortDescending));
}</description>
		<content:encoded><![CDATA[<p>I think this would work and you do not have to make a callLater method&#8230;..</p>
<p>private function doHeaderRelease(event:DataGridEvent):void {<br />
	var dg:DataGrid= event.currentTarget as DataGrid;</p>
<p>	trace(&#8220;column: &#8221; + String(event.dataField));<br />
	trace(&#8220;descending: &#8221; + String(dg.columns[event.columnIndex].sortDescending));<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>

