<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Rendezvous with technology &#187; AdvancedDataGrid</title>
	<atom:link href="http://techrays.wordpress.com/tag/advanceddatagrid/feed/" rel="self" type="application/rss+xml" />
	<link>http://techrays.wordpress.com</link>
	<description>Not everything about technology, but close....</description>
	<lastBuildDate>Wed, 04 Nov 2009 12:55:40 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='techrays.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/c5b131bc9f5f7c44cd7f48494624bf85?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Rendezvous with technology &#187; AdvancedDataGrid</title>
		<link>http://techrays.wordpress.com</link>
	</image>
			<item>
		<title>GroupingCollection with improved performance</title>
		<link>http://techrays.wordpress.com/2009/11/04/groupingcollection-with-improved-performance/</link>
		<comments>http://techrays.wordpress.com/2009/11/04/groupingcollection-with-improved-performance/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 12:55:40 +0000</pubDate>
		<dc:creator>Sameer</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Advanced DataGrid]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[AdvancedDataGrid]]></category>
		<category><![CDATA[GroupingCollection]]></category>
		<category><![CDATA[GroupingCollection2]]></category>
		<category><![CDATA[ISummaryCalculator]]></category>

		<guid isPermaLink="false">http://techrays.wordpress.com/?p=59</guid>
		<description><![CDATA[There were some concerns over the performance of GroupingCollection class while grouping and calculating summaries.
So, a new class GroupingCollection2 is introduced in the data visualization components.
The major improvements in GroupingCollection2 are -
1. Grouping performance improved.
2. Summary calculation performance improved. Now, instead of looping over the data again and again, summaries are calculated in a single [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=59&subd=techrays&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>There were some concerns over the performance of GroupingCollection class while grouping and calculating summaries.</p>
<p>So, a new class GroupingCollection2 is introduced in the data visualization components.</p>
<p>The major improvements in GroupingCollection2 are -<br />
1. Grouping performance improved.<br />
2. Summary calculation performance improved. Now, instead of looping over the data again and again, summaries are calculated in a single loop.<br />
3. When using async refresh, the summaries are calculated as soon as each Group is built. Earlier, the summaries were calculated only after all the Groups have been made.</p>
<p>What has changed -<br />
1. Introduced class GroupingCollection2 which replaces existing class GroupingCollection.<br />
2. Introduced class SummaryField2  which replaces existing class SummaryField.</p>
<p>No no, classes GroupingCollection and SummaryField are not removed.<br />
They will continue to exist to maintain backward compatibility.<br />
So, you can use either GroupingCollection or GroupingCollection2 and AdvancedDataGrid will continue to work <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The difference between SummaryField and SummaryField2 is -<br />
SummaryField2 does not have &#8220;operation&#8221; and &#8220;summaryFunction&#8221; properties.<br />
A new property &#8220;summaryOperation&#8221; in added in SummaryField2. It is an Object which takes one of the following -<br />
* SUM, MIN, MAX, AVG or COUNT as String.<br />
OR<br />
* An implemtatation of mx.collections.ISummaryCalculator for calculating custom summaries.<br />
The default value is SUM.</p>
<p>API changes -<br />
1. Method refresh() has been changed in GroupingCollection2. The syntax now is &#8211; </p>
<pre>
function refresh(async:Boolean = false,
		dispatchCollectionEvents:Boolean = false):Boolean;
</pre>
<p>Code changes required to start using GroupingCollection2 -<br />
1. Use GroupingCollection2 instead of GroupingCollection.<br />
2. Use SummaryField2 instead of SummaryField.<br />
3. Replace operation/summaryFunction in SummaryField with summaryOperation in SummaryField2.</p>
<p>An example is shown here:<br />
With GroupingCollection &#8211;  </p>
<pre>
&lt;mx:GroupingCollection id="gc" source="{arr}"&gt;
	&lt;mx:Grouping&gt;
		&lt;mx:GroupingField name="name" &gt;
			&lt;mx:SummaryRow&gt;
				&lt;mx:SummaryField dataField="sal"
					operation="MAX" /&gt;
			&lt;/mx:SummaryRow&gt;
		&lt;/mx:GroupingField&gt;
	&lt;/mx:Grouping&gt;
&lt;/mx:GroupingCollection&gt;
</pre>
<p>With GroupingCollection2 &#8211; </p>
<pre>
&lt;mx:GroupingCollection2 id="gc" source="{arr}"&gt;
	&lt;mx:Grouping&gt;
		&lt;mx:GroupingField name="name"&gt;
			&lt;mx:SummaryRow &gt;
				&lt;mx:SummaryField2 dataField="sal"
					summaryOperation="MAX" /&gt;
			&lt;/mx:SummaryRow&gt;
		&lt;/mx:GroupingField&gt;
	&lt;/mx:Grouping&gt;
&lt;/mx:GroupingCollection2&gt;
</pre>
<p>Try it and let us know your feedback.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techrays.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techrays.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techrays.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techrays.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techrays.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techrays.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techrays.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techrays.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techrays.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techrays.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=59&subd=techrays&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techrays.wordpress.com/2009/11/04/groupingcollection-with-improved-performance/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33fd0e19e31726ae7391ee511e00f585?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sameer</media:title>
		</media:content>
	</item>
		<item>
		<title>Preserving the open nodes in AdvancedDataGrid after re-grouping</title>
		<link>http://techrays.wordpress.com/2008/11/19/preserving-the-open-nodes-in-advanceddatagrid-after-re-grouping/</link>
		<comments>http://techrays.wordpress.com/2008/11/19/preserving-the-open-nodes-in-advanceddatagrid-after-re-grouping/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 16:10:19 +0000</pubDate>
		<dc:creator>Sameer</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Advanced DataGrid]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[AdvancedDataGrid]]></category>

		<guid isPermaLink="false">http://techrays.wordpress.com/?p=22</guid>
		<description><![CDATA[Consider a scenario in which you want to group some data and display it in an AdvancedDataGrid. Now, you open some nodes. And you want to add summaries to the data. Adding summaries means to re-group the data by calling GroupingCollection.refresh(). But the state of open nodes will be lost as new Objects are created [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=22&subd=techrays&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Consider a scenario in which you want to group some data and display it in an AdvancedDataGrid. Now, you open some nodes. And you want to add summaries to the data. Adding summaries means to re-group the data by calling GroupingCollection.refresh(). But the state of open nodes will be lost as new Objects are created for the group nodes while re-grouping.</p>
<p>I&#8217;m posting a sample in which the open nodes are preserved.</p>
<p><a title="Sample" href="http://prosameer.googlepages.com/PreserveNodesADG.html">Sample here</a>.</p>
<p><a title="Source" href="http://prosameer.googlepages.com/PreserveNodesADG.mxml">Source here</a>.</p>
<p>Open the sample, click on Group data, open some nodes and then click on Add Summary. The nodes which are open will remain open.</p>
<p>Basically, here I&#8217;m giving the same UID for the group nodes as they were before (re-grouping). That&#8217;s why, the open state is maintained.</p>
<p><strong>Note: This sample will work only if the grouping fields are same for both groupings. It&#8217;ll need some tweaking in case the grouping fields are changed.</strong></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techrays.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techrays.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techrays.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techrays.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techrays.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techrays.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techrays.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techrays.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techrays.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techrays.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=22&subd=techrays&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techrays.wordpress.com/2008/11/19/preserving-the-open-nodes-in-advanceddatagrid-after-re-grouping/feed/</wfw:commentRss>
		<slash:comments>40</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33fd0e19e31726ae7391ee511e00f585?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sameer</media:title>
		</media:content>
	</item>
		<item>
		<title>Dynamically creating a column grouped AdvancedDataGrid</title>
		<link>http://techrays.wordpress.com/2008/04/25/dynamically-creating-a-column-grouped-advanceddatagrid/</link>
		<comments>http://techrays.wordpress.com/2008/04/25/dynamically-creating-a-column-grouped-advanceddatagrid/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 17:38:55 +0000</pubDate>
		<dc:creator>Sameer</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Advanced DataGrid]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[AdvancedDataGrid]]></category>

		<guid isPermaLink="false">http://techrays.wordpress.com/?p=21</guid>
		<description><![CDATA[Usually people like to write the AdvancedDataGrid component in mxml. But there are some scenarios where there is a need to create the grid dynamically.
Here is a simple sample in which an AdvancedDataGrid is created dynamically with column groups.
Source is posted here.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=21&subd=techrays&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Usually people like to write the AdvancedDataGrid component in mxml. But there are some scenarios where there is a need to create the grid dynamically.</p>
<p>Here is a simple <a href="http://prosameer.googlepages.com/DynamicColumnGroupGrid.html">sample</a> in which an AdvancedDataGrid is created dynamically with column groups.</p>
<p>Source is posted <a href="http://prosameer.googlepages.com/DynamicColumnGroupGrid.mxml">here</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techrays.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techrays.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techrays.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techrays.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techrays.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techrays.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techrays.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techrays.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techrays.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techrays.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techrays.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techrays.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=21&subd=techrays&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techrays.wordpress.com/2008/04/25/dynamically-creating-a-column-grouped-advanceddatagrid/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33fd0e19e31726ae7391ee511e00f585?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sameer</media:title>
		</media:content>
	</item>
		<item>
		<title>Extracting the source from an IHierarchicalCollectionView</title>
		<link>http://techrays.wordpress.com/2008/03/14/extracting-the-source-from-an-ihierarchicalcollectionview/</link>
		<comments>http://techrays.wordpress.com/2008/03/14/extracting-the-source-from-an-ihierarchicalcollectionview/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 04:27:57 +0000</pubDate>
		<dc:creator>Sameer</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[AdvancedDataGrid]]></category>

		<guid isPermaLink="false">http://techrays.wordpress.com/?p=18</guid>
		<description><![CDATA[When you set Object/Collection as a source for an AdvancedDataGrid to display the source in a Hierarchical manner, the AdvancedDataGrid.dataProvider will return an instance of IHierarchicalCollectionView because internally the source is used to construct a HierarchicalCollectionView which is returned via the dataProvider property.
What if, you want the original source from this IHierarchicalCollectionView. Well, there are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=18&subd=techrays&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>When you set Object/Collection as a source for an AdvancedDataGrid to display the source in a Hierarchical manner, the AdvancedDataGrid.dataProvider will return an instance of IHierarchicalCollectionView because internally the source is used to construct a HierarchicalCollectionView which is returned via the dataProvider property.</p>
<p>What if, you want the original source from this IHierarchicalCollectionView. Well, there are some API&#8217;s for achieving this -</p>
<p><code><br />
// First, get the HierarchicalData used to create the HierarchicalCollection<br />
var hd:IHierarchicalData = IHierarchicalCollectionView(adg.dataProvider).source;<br />
</code></p>
<p><code><br />
//From the HierarchicalData, get the source collection/object<br />
var source:Object = hd.getRoot();<br />
</code></p>
<p>Here is a <a href="http://prosameer.googlepages.com/ADG_Source.html">sample</a>.<br />
<a href="http://prosameer.googlepages.com/ADG_Source.mxml">Source here</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techrays.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techrays.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techrays.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techrays.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techrays.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techrays.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techrays.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techrays.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techrays.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techrays.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techrays.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techrays.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=18&subd=techrays&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techrays.wordpress.com/2008/03/14/extracting-the-source-from-an-ihierarchicalcollectionview/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33fd0e19e31726ae7391ee511e00f585?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sameer</media:title>
		</media:content>
	</item>
		<item>
		<title>A 3-state checkbox in an AdvancedDataGrid ItemRenderer</title>
		<link>http://techrays.wordpress.com/2008/02/18/a-3-state-checkbox-in-an-advanceddatagrid-itemrenderer/</link>
		<comments>http://techrays.wordpress.com/2008/02/18/a-3-state-checkbox-in-an-advanceddatagrid-itemrenderer/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 08:55:01 +0000</pubDate>
		<dc:creator>Sameer</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[AdvancedDataGrid]]></category>

		<guid isPermaLink="false">http://techrays.wordpress.com/?p=16</guid>
		<description><![CDATA[There is a post in Flex component Yahoo group on how to show a 3-state checkbox in an AdvancedDataGrid.
It has been implemented for the Flex Tree Control in the Flex cookbook.
I thought lets write a similar example for AdvancedDataGrid.  I made some changes in the original sample and here it is; working for the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=16&subd=techrays&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>There is a post in <a href="http://tech.groups.yahoo.com/group/flexcomponents/message/3550">Flex component Yahoo group</a> on how to show a 3-state checkbox in an AdvancedDataGrid.</p>
<p>It has been implemented for the Flex Tree Control in the <a href="https://store1.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&amp;postid=545&amp;loc=en_US&amp;productid=2">Flex cookbook</a>.</p>
<p>I thought lets write a similar example for AdvancedDataGrid.  I made some changes in the original sample and here it is; working for the AdvancedDataGrid control.</p>
<p><a href="http://prosameer.googlepages.com/CheckADG.html">Example here</a></p>
<p><a href="http://prosameer.googlepages.com/CheckADG.zip">Source here</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techrays.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techrays.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techrays.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techrays.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techrays.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techrays.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techrays.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techrays.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techrays.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techrays.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techrays.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techrays.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=16&subd=techrays&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techrays.wordpress.com/2008/02/18/a-3-state-checkbox-in-an-advanceddatagrid-itemrenderer/feed/</wfw:commentRss>
		<slash:comments>102</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33fd0e19e31726ae7391ee511e00f585?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sameer</media:title>
		</media:content>
	</item>
		<item>
		<title>Showing Summary with the Group Node</title>
		<link>http://techrays.wordpress.com/2008/02/13/showing-summary-with-the-group-node/</link>
		<comments>http://techrays.wordpress.com/2008/02/13/showing-summary-with-the-group-node/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 09:40:38 +0000</pubDate>
		<dc:creator>Sameer</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[AdvancedDataGrid]]></category>

		<guid isPermaLink="false">http://techrays.wordpress.com/?p=15</guid>
		<description><![CDATA[This example shows how AdvancedDataGrid can be configured to show summary with the Group node.
Here, I&#8217;m using GroupingCollection to calculate the Summary with summaryPlacement being &#8220;group&#8221;. Then using groupLabelFunction in AdvancedDataGrid and returning the Group Node&#8217;s value plus the Summary value.
Source mxml is located here.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=15&subd=techrays&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This <a href="http://prosameer.googlepages.com/ADGGroupSummary.html">example</a> shows how AdvancedDataGrid can be configured to show summary with the Group node.</p>
<p>Here, I&#8217;m using GroupingCollection to calculate the Summary with summaryPlacement being &#8220;group&#8221;. Then using groupLabelFunction in AdvancedDataGrid and returning the Group Node&#8217;s value plus the Summary value.</p>
<p>Source mxml is located <a href="http://prosameer.googlepages.com/ADGGroupSummary.mxml">here</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techrays.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techrays.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techrays.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techrays.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techrays.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techrays.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techrays.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techrays.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techrays.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techrays.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techrays.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techrays.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=15&subd=techrays&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techrays.wordpress.com/2008/02/13/showing-summary-with-the-group-node/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33fd0e19e31726ae7391ee511e00f585?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sameer</media:title>
		</media:content>
	</item>
		<item>
		<title>Accessing Grouping.label in Summary Rows in AdvancedDataGrid</title>
		<link>http://techrays.wordpress.com/2007/12/06/accessing-groupinglabel-in-summary-rows-in-advanceddatagrid/</link>
		<comments>http://techrays.wordpress.com/2007/12/06/accessing-groupinglabel-in-summary-rows-in-advanceddatagrid/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 09:05:42 +0000</pubDate>
		<dc:creator>Sameer</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[AdvancedDataGrid]]></category>

		<guid isPermaLink="false">http://techrays.wordpress.com/2007/12/06/accessing-groupinglabel-in-summary-rows-in-advanceddatagrid/</guid>
		<description><![CDATA[The GroupLabel specified while creating a GroupingCollection can be accessed while displaying summaries in AdvancedDataGrid.
Although, accessing the GroupLabel in summary rows can be quite a tedious task but it can be very useful.
Here is a sample.  In this sample, the Group name is displayed in the summary rows along with the value for the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=14&subd=techrays&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The GroupLabel specified while creating a GroupingCollection can be accessed while displaying summaries in AdvancedDataGrid.</p>
<p>Although, accessing the GroupLabel in summary rows can be quite a tedious task but it can be very useful.</p>
<p>Here is a <b><a href="http://prosameer.googlepages.com/SummaryWithGroupLabel.html">sample</a></b>.  In this sample, the Group name is displayed in the summary rows along with the value for the summary.</p>
<p><b>Source</b>  -</p>
<ul>
<li><a href="http://prosameer.googlepages.com/SummaryWithGroupLabel.mxml">Application file (mxml)</a></li>
<li><a href="http://prosameer.googlepages.com/SummaryRenderer.mxml">SummarRenderer (mxml)</a></li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techrays.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techrays.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techrays.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techrays.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techrays.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techrays.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techrays.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techrays.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techrays.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techrays.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techrays.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techrays.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=14&subd=techrays&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techrays.wordpress.com/2007/12/06/accessing-groupinglabel-in-summary-rows-in-advanceddatagrid/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33fd0e19e31726ae7391ee511e00f585?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sameer</media:title>
		</media:content>
	</item>
		<item>
		<title>Filtering of Hierarchical Data in AdvancedDataGrid</title>
		<link>http://techrays.wordpress.com/2007/10/12/filtering-of-hierarchical-data-in-advanceddatagrid/</link>
		<comments>http://techrays.wordpress.com/2007/10/12/filtering-of-hierarchical-data-in-advanceddatagrid/#comments</comments>
		<pubDate>Fri, 12 Oct 2007 07:19:37 +0000</pubDate>
		<dc:creator>Sameer</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[AdvancedDataGrid]]></category>

		<guid isPermaLink="false">http://techrays.wordpress.com/2007/10/12/filtering-of-hierarchical-data-in-advanceddatagrid/</guid>
		<description><![CDATA[Filtering of Hierarchical Data in AdvancedDataGrid is quite straight forward.
Assign the filter function to the ADG&#8217;s dataProvider and call refresh() -

// assign filter function to
//the AdvancedDataGrid's dataProvider
IHierarchicalCollectionView(
        adg.dataProvider).filterFunction =
                    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=12&subd=techrays&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Filtering of Hierarchical Data in AdvancedDataGrid is quite straight forward.</p>
<p>Assign the filter function to the ADG&#8217;s dataProvider and call refresh() -</p>
<pre>
// assign filter function to
//the AdvancedDataGrid's dataProvider
IHierarchicalCollectionView(
        adg.dataProvider).filterFunction =
                                 myFilterFunc;

// refresh the ADG's dataProvider
IHierarchicalCollectionView(
        adg.dataProvider).refresh();</pre>
<p>Here is a <a href="http://prosameer.googlepages.com/Filtering.html">Sample</a></p>
<p>And the <a href="http://prosameer.googlepages.com/Filtering.mxml">Source</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techrays.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techrays.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techrays.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techrays.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techrays.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techrays.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techrays.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techrays.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techrays.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techrays.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techrays.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techrays.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=12&subd=techrays&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techrays.wordpress.com/2007/10/12/filtering-of-hierarchical-data-in-advanceddatagrid/feed/</wfw:commentRss>
		<slash:comments>60</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33fd0e19e31726ae7391ee511e00f585?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sameer</media:title>
		</media:content>
	</item>
		<item>
		<title>Auto Filtering in AdvancedDataGrid</title>
		<link>http://techrays.wordpress.com/2007/08/14/auto-filtering-in-advanceddatagrid/</link>
		<comments>http://techrays.wordpress.com/2007/08/14/auto-filtering-in-advanceddatagrid/#comments</comments>
		<pubDate>Tue, 14 Aug 2007 07:48:28 +0000</pubDate>
		<dc:creator>Sameer</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[AdvancedDataGrid]]></category>

		<guid isPermaLink="false">http://techrays.wordpress.com/2007/08/14/auto-filtering-in-advanceddatagrid/</guid>
		<description><![CDATA[I&#8217;ve written a small application showing how auto filtering can be used  in an AdvancedDataGrid.
In the sample, the first two headers are TextInput control which are used as input for the text.
I&#8217;ve written a custom itemRenderer using TextInput. On the change event of the TextInput, filtering is applied to the dataProvider and the result [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=9&subd=techrays&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve written a small application showing how auto filtering can be used  in an AdvancedDataGrid.</p>
<p>In the sample, the first two headers are TextInput control which are used as input for the text.</p>
<p>I&#8217;ve written a custom itemRenderer using TextInput. On the change event of the TextInput, filtering is applied to the dataProvider and the result is shown by the AdvancedDataGrid.</p>
<p>The sample is located <a href="http://prosameer.googlepages.com/FilterADG.html">here</a></p>
<p>Source code  &#8211; <a href="http://prosameer.googlepages.com/FilterADG.mxml">The main application file</a>, <a href="http://prosameer.googlepages.com/FilterTextInput.mxml">The itemRenderer</a></p>
<p>Also, the sample can be modified to create an Advanced Filtering mechanism.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techrays.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techrays.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techrays.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techrays.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techrays.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techrays.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techrays.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techrays.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techrays.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techrays.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techrays.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techrays.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=9&subd=techrays&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techrays.wordpress.com/2007/08/14/auto-filtering-in-advanceddatagrid/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33fd0e19e31726ae7391ee511e00f585?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sameer</media:title>
		</media:content>
	</item>
		<item>
		<title>Auto Resizable AdvancedDataGrid</title>
		<link>http://techrays.wordpress.com/2007/08/06/auto-resizable-advanceddatagrid/</link>
		<comments>http://techrays.wordpress.com/2007/08/06/auto-resizable-advanceddatagrid/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 13:01:39 +0000</pubDate>
		<dc:creator>Sameer</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[AdvancedDataGrid]]></category>

		<guid isPermaLink="false">http://techrays.wordpress.com/2007/08/06/auto-resizable-advanceddatagrid/</guid>
		<description><![CDATA[I like the auto-re sizable functionality of the columns in most of the grids.
Common applications include Windows Explorer and File Browser in Ubuntu.
So, I decided to write my own in AdvancedDataGrid.
Here, double-clicking the separator between the headers will resize the corresponding column to fit in the contents.
Check out the sample here
Try clicking the header separator [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=7&subd=techrays&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I like the auto-re sizable functionality of the columns in most of the grids.</p>
<p>Common applications include Windows Explorer and File Browser in Ubuntu.</p>
<p>So, I decided to write my own in AdvancedDataGrid.</p>
<p>Here, double-clicking the separator between the headers will resize the corresponding column to fit in the contents.</p>
<p>Check out the sample <a href="http://prosameer.googlepages.com/AutoResizableADGApp.html">here</a><br />
Try clicking the header separator between &#8216;Subject&#8217; and &#8216;Date&#8217; column. This will resize the &#8216;Subject&#8217; column to adjust to the<br />
data it is showing.</p>
<p>Source code here -<br />
<a href="http://prosameer.googlepages.com/AutoResizableADGApp.mxml">Application .mxml file</a><br />
<a href="http://prosameer.googlepages.com/AutoResizableADG.as">Resizable ADG .as file</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/techrays.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/techrays.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techrays.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techrays.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techrays.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techrays.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techrays.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techrays.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techrays.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techrays.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techrays.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techrays.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techrays.wordpress.com&blog=1319355&post=7&subd=techrays&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techrays.wordpress.com/2007/08/06/auto-resizable-advanceddatagrid/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/33fd0e19e31726ae7391ee511e00f585?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sameer</media:title>
		</media:content>
	</item>
	</channel>
</rss>