<?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: Reusable Numeric Sort Method for Flex DataGrid Columns</title>
	<atom:link href="http://www.webappsolution.com/wordpress/2010/03/31/reusable-numeric-sort-method-for-flex-datagrid-columns/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webappsolution.com/wordpress/2010/03/31/reusable-numeric-sort-method-for-flex-datagrid-columns/</link>
	<description>When you're in need of an appsolution</description>
	<pubDate>Fri, 18 May 2012 00:53:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: shan</title>
		<link>http://www.webappsolution.com/wordpress/2010/03/31/reusable-numeric-sort-method-for-flex-datagrid-columns/comment-page-1/#comment-2830</link>
		<dc:creator>shan</dc:creator>
		<pubDate>Tue, 29 Nov 2011 08:49:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.webappsolution.com/wordpress/?p=756#comment-2830</guid>
		<description>&lt;blockquote cite="#commentbody-1318"&gt;
&lt;strong&gt;&lt;a href="#comment-1318" rel="nofollow"&gt;Rkannan&lt;/a&gt; :&lt;/strong&gt;
          Awesome… Saved a lot of time.
Thanks,
RKannan.
         &lt;/blockquote&gt;</description>
		<content:encoded><![CDATA[<blockquote cite="#commentbody-1318"><p>
<strong><a href="#comment-1318" rel="nofollow">Rkannan</a> :</strong><br />
          Awesome… Saved a lot of time.<br />
Thanks,<br />
RKannan.
         </p></blockquote>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rachel</title>
		<link>http://www.webappsolution.com/wordpress/2010/03/31/reusable-numeric-sort-method-for-flex-datagrid-columns/comment-page-1/#comment-2762</link>
		<dc:creator>Rachel</dc:creator>
		<pubDate>Sat, 25 Jun 2011 21:03:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.webappsolution.com/wordpress/?p=756#comment-2762</guid>
		<description>Thanks for posting the code, it worked brilliantly.

I called the function directly in my MXML file as so:

</description>
		<content:encoded><![CDATA[<p>Thanks for posting the code, it worked brilliantly.</p>
<p>I called the function directly in my MXML file as so:</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Robert</title>
		<link>http://www.webappsolution.com/wordpress/2010/03/31/reusable-numeric-sort-method-for-flex-datagrid-columns/comment-page-1/#comment-2743</link>
		<dc:creator>Brian Robert</dc:creator>
		<pubDate>Tue, 26 Apr 2011 23:01:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.webappsolution.com/wordpress/?p=756#comment-2743</guid>
		<description>Hello, thanks for the awesome code. My dataprovider is an XML Collection, and my datafield is often like "stats.sensors" which didn't work. So here's my little modification (part of):

var fieldDepth:int = fieldName.split(".").length;

var fieldsNames:Array = fieldName.split(".");

var value1:Number = (obj1[fieldsNames[0]][fieldsNames[1]] == '' &#124;&#124; obj1[fieldsNames[0]][fieldsNames[1]] == null) ? null : new Number(obj1[fieldsNames[0]][fieldsNames[1]]);</description>
		<content:encoded><![CDATA[<p>Hello, thanks for the awesome code. My dataprovider is an XML Collection, and my datafield is often like &#8220;stats.sensors&#8221; which didn&#8217;t work. So here&#8217;s my little modification (part of):</p>
<p>var fieldDepth:int = fieldName.split(&#8221;.&#8221;).length;</p>
<p>var fieldsNames:Array = fieldName.split(&#8221;.&#8221;);</p>
<p>var value1:Number = (obj1[fieldsNames[0]][fieldsNames[1]] == &#8221; || obj1[fieldsNames[0]][fieldsNames[1]] == null) ? null : new Number(obj1[fieldsNames[0]][fieldsNames[1]]);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karthik</title>
		<link>http://www.webappsolution.com/wordpress/2010/03/31/reusable-numeric-sort-method-for-flex-datagrid-columns/comment-page-1/#comment-2547</link>
		<dc:creator>Karthik</dc:creator>
		<pubDate>Fri, 29 Oct 2010 13:39:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.webappsolution.com/wordpress/?p=756#comment-2547</guid>
		<description>i had a generic sort fn...and a specific sortCompareFn for every numeric column, that was just getting the dataField out and calling the generic fn.  But this tip made it even more generic and saved a few lines of code!  thank you!</description>
		<content:encoded><![CDATA[<p>i had a generic sort fn&#8230;and a specific sortCompareFn for every numeric column, that was just getting the dataField out and calling the generic fn.  But this tip made it even more generic and saved a few lines of code!  thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rkannan</title>
		<link>http://www.webappsolution.com/wordpress/2010/03/31/reusable-numeric-sort-method-for-flex-datagrid-columns/comment-page-1/#comment-1318</link>
		<dc:creator>Rkannan</dc:creator>
		<pubDate>Mon, 30 Aug 2010 16:07:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.webappsolution.com/wordpress/?p=756#comment-1318</guid>
		<description>Awesome... Saved a lot of time.

Thanks,
RKannan.</description>
		<content:encoded><![CDATA[<p>Awesome&#8230; Saved a lot of time.</p>
<p>Thanks,<br />
RKannan.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

