<?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: Tips &amp; Tricks : AdvancedDataGrid &#8211; grouping &amp; summary rows</title>
	<atom:link href="http://blog.flexgeek.in/2007/06/tips-tricks-advanceddatagrid-grouping-summary-rows/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexgeek.in/2007/06/tips-tricks-advanceddatagrid-grouping-summary-rows/</link>
	<description></description>
	<lastBuildDate>Fri, 19 Mar 2010 09:06:47 +0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Roberto Kalili</title>
		<link>http://blog.flexgeek.in/2007/06/tips-tricks-advanceddatagrid-grouping-summary-rows/comment-page-1/#comment-3032</link>
		<dc:creator>Roberto Kalili</dc:creator>
		<pubDate>Sun, 27 Dec 2009 00:28:16 +0000</pubDate>
		<guid isPermaLink="false">http://flexgeek.wordpress.com/2007/06/14/tips-tricks-advanceddatagrid-grouping-summary-rows/#comment-3032</guid>
		<description>Hi, Harish. 
Congratulations for your posts.
I&#039;m novice in Flex and I need some help. I have a ADG with state, name and trainning period for each employed from a company. I have one panel with filters (date, state, etc.) Everything is working fine... Or not... I have a slider with a  range of hours. MyADG is grouping states and names (my source is an Arraycollection). I want show only totals (summaries) when the total values are between the slider range. 

Can You help me, please. I need only this to finish my work.

Thank you. If you want, send me an e-mail.</description>
		<content:encoded><![CDATA[<p>Hi, Harish.<br />
Congratulations for your posts.<br />
I&#8217;m novice in Flex and I need some help. I have a ADG with state, name and trainning period for each employed from a company. I have one panel with filters (date, state, etc.) Everything is working fine&#8230; Or not&#8230; I have a slider with a  range of hours. MyADG is grouping states and names (my source is an Arraycollection). I want show only totals (summaries) when the total values are between the slider range. </p>
<p>Can You help me, please. I need only this to finish my work.</p>
<p>Thank you. If you want, send me an e-mail.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sandesh Singh</title>
		<link>http://blog.flexgeek.in/2007/06/tips-tricks-advanceddatagrid-grouping-summary-rows/comment-page-1/#comment-2452</link>
		<dc:creator>Sandesh Singh</dc:creator>
		<pubDate>Thu, 29 Oct 2009 03:21:31 +0000</pubDate>
		<guid isPermaLink="false">http://flexgeek.wordpress.com/2007/06/14/tips-tricks-advanceddatagrid-grouping-summary-rows/#comment-2452</guid>
		<description>(also posted at http://forums.adobe.com/thread/514030)

Hi.

I have some data like so :

{
     { total : 300, year : 2001 }, // total for the entire year
     { total : 300, year : 2001, quarter : 1 }, // total for an entire quarter
     { total : 250, year : 2001, quarter : 1, month : 1 }, // total for a specific month 
     { total : 275, year : 2001, quarter : 1, month : 2 },
     { total : 300, year : 2001, quarter : 1, month : 3 },
     { total : 300, year : 2001, quarter : 2 },
     { total : 250, year : 2001, quarter : 2, month : 4 },
     { total : 275, year : 2001, quarter : 2, month : 5 },
     { total : 300, year : 2001, quarter : 2, month : 6 },
     { total : 300, year : 2001, quarter : 3 },
     { total : 250, year : 2001, quarter : 3, month : 7 },
     { total : 275, year : 2001, quarter : 3, month : 8 },
     { total : 300, year : 2001, quarter : 3, month : 9 },
     { total : 300, year : 2001, quarter : 4 },
     { total : 250, year : 2001, quarter : 4, month : 10 },
     { total : 275, year : 2001, quarter : 4, month : 11 },
     { total : 300, year : 2001, quarter : 4, month : 12 },
}

As you can see, the aggregations are embedded in the data. Objects missing the quarter and month field are aggregations for the year, and those missing the month fields are aggregations for quarter.

The aggregations don&#039;t follow the inbuilt aggregations of MAX, MIN AVG etc (it is a last-non-empty column, FYI). Is there a way to group this data in an AdvancedDataGrid?

Thanks.</description>
		<content:encoded><![CDATA[<p>(also posted at <a href="http://forums.adobe.com/thread/514030)" rel="nofollow">http://forums.adobe.com/thread/514030)</a></p>
<p>Hi.</p>
<p>I have some data like so :</p>
<p>{<br />
     { total : 300, year : 2001 }, // total for the entire year<br />
     { total : 300, year : 2001, quarter : 1 }, // total for an entire quarter<br />
     { total : 250, year : 2001, quarter : 1, month : 1 }, // total for a specific month<br />
     { total : 275, year : 2001, quarter : 1, month : 2 },<br />
     { total : 300, year : 2001, quarter : 1, month : 3 },<br />
     { total : 300, year : 2001, quarter : 2 },<br />
     { total : 250, year : 2001, quarter : 2, month : 4 },<br />
     { total : 275, year : 2001, quarter : 2, month : 5 },<br />
     { total : 300, year : 2001, quarter : 2, month : 6 },<br />
     { total : 300, year : 2001, quarter : 3 },<br />
     { total : 250, year : 2001, quarter : 3, month : 7 },<br />
     { total : 275, year : 2001, quarter : 3, month : 8 },<br />
     { total : 300, year : 2001, quarter : 3, month : 9 },<br />
     { total : 300, year : 2001, quarter : 4 },<br />
     { total : 250, year : 2001, quarter : 4, month : 10 },<br />
     { total : 275, year : 2001, quarter : 4, month : 11 },<br />
     { total : 300, year : 2001, quarter : 4, month : 12 },<br />
}</p>
<p>As you can see, the aggregations are embedded in the data. Objects missing the quarter and month field are aggregations for the year, and those missing the month fields are aggregations for quarter.</p>
<p>The aggregations don&#8217;t follow the inbuilt aggregations of MAX, MIN AVG etc (it is a last-non-empty column, FYI). Is there a way to group this data in an AdvancedDataGrid?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: やせ蛙 まけるな一茶 是にあり &#187; AdvancedDataGrid</title>
		<link>http://blog.flexgeek.in/2007/06/tips-tricks-advanceddatagrid-grouping-summary-rows/comment-page-1/#comment-2431</link>
		<dc:creator>やせ蛙 まけるな一茶 是にあり &#187; AdvancedDataGrid</dc:creator>
		<pubDate>Mon, 12 Oct 2009 08:06:45 +0000</pubDate>
		<guid isPermaLink="false">http://flexgeek.wordpress.com/2007/06/14/tips-tricks-advanceddatagrid-grouping-summary-rows/#comment-2431</guid>
		<description>[...] row http://blog.flexgeek.in/2007/06/tips-tricks-advanceddatagrid-grouping-summary-rows/    カテゴリー: AdvancedDataGrid タグ:         コメント (0) トラックバック (0) [...]</description>
		<content:encoded><![CDATA[<p>[...] row <a href="http://blog.flexgeek.in/2007/06/tips-tricks-advanceddatagrid-grouping-summary-rows/" rel="nofollow">http://blog.flexgeek.in/2007/06/tips-tricks-advanceddatagrid-grouping-summary-rows/</a>    カテゴリー: AdvancedDataGrid タグ:         コメント (0) トラックバック (0) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sachin</title>
		<link>http://blog.flexgeek.in/2007/06/tips-tricks-advanceddatagrid-grouping-summary-rows/comment-page-1/#comment-2427</link>
		<dc:creator>Sachin</dc:creator>
		<pubDate>Mon, 14 Sep 2009 06:50:16 +0000</pubDate>
		<guid isPermaLink="false">http://flexgeek.wordpress.com/2007/06/14/tips-tricks-advanceddatagrid-grouping-summary-rows/#comment-2427</guid>
		<description>why validateNow is required.Could we not use validateProperties or validateDisplayList??

Thanks
Sachin Dev Tripathi</description>
		<content:encoded><![CDATA[<p>why validateNow is required.Could we not use validateProperties or validateDisplayList??</p>
<p>Thanks<br />
Sachin Dev Tripathi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alice</title>
		<link>http://blog.flexgeek.in/2007/06/tips-tricks-advanceddatagrid-grouping-summary-rows/comment-page-1/#comment-2299</link>
		<dc:creator>Alice</dc:creator>
		<pubDate>Wed, 10 Jun 2009 16:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://flexgeek.wordpress.com/2007/06/14/tips-tricks-advanceddatagrid-grouping-summary-rows/#comment-2299</guid>
		<description>Hi Harish!
It&#039;s a nice example and very usefull.
What will I have ti change if I &#039;d like to sum more than one column&#039;s value?
I &#039;ve tried that but it only keeps the sum of the last column:

  //Set the summary field. The field on which the summary will be calculated.
		  var sf1:SummaryField = new SummaryField(&quot;monthlyFeature&quot;);
		  //Summary Function - the function that calculates the summary row display
		  sf1.summaryFunction = func1;
		 
		   var sf2:SummaryField = new SummaryField(&quot;monthlyFeature&quot;);
		  //Summary Function - the function that calculates the summary row display
		  sf2.summaryFunction = func2;
		 
		   var sf3:SummaryField = new SummaryField(&quot;monthlyFeature&quot;);
		  //Summary Function - the function that calculates the summary row display
		  sf3.summaryFunction = func3;
		  
		    //set the summary rows fields property to summaryField
		  sr.fields = [sf1,sf2,sf3];
 private function func1(itr:IViewCursor,field:String, str:String=null):Object
        {
        	var sum1:Number=0
        	while(!itr.afterLast)
        	{
        		//trace(itr.current)
        		if(itr.current.monthlyFeature.firstEvent !=null){
        			var value:Number = Number(itr.current.monthlyFeature.firstEvent.duree);
        			if(!isNaN(value))
        			{
        		 	 sum1+= value
        			}
        			
        		}
        		itr.moveNext()
        	}
        	return sum1
        }
         private function func2(itr:IViewCursor,field:String, str:String=null):Object
        {
        	var sum2:Number=0
        	while(!itr.afterLast)
        	{
        		//trace(itr.current)
        		if(itr.current.monthlyFeature.secondEvent !=null){
        			var value:Number = Number(itr.current.monthlyFeature.secondEvent.duree);
        			if(!isNaN(value))
        			{
        		 	 sum2+= value
        			}
        			
        		}
        		itr.moveNext()
        	}
        	return sum2
        }
        private function func3(itr:IViewCursor,field:String, str:String=null):Object
        {
        	var sum3:Number=0
        	while(!itr.afterLast)
        	{
        		//trace(itr.current)
        		if(itr.current.monthlyFeature.thirdEvent !=null){
        			var value:Number = Number(itr.current.monthlyFeature.thirdEvent.duree);
        			if(!isNaN(value))
        			{
        		 	 sum3+= value
        			}
        			
        		}
        		itr.moveNext()
        	}
        	return sum3
        }

 
  	 		




 		
  	 	</description>
		<content:encoded><![CDATA[<p>Hi Harish!<br />
It&#8217;s a nice example and very usefull.<br />
What will I have ti change if I &#8216;d like to sum more than one column&#8217;s value?<br />
I &#8216;ve tried that but it only keeps the sum of the last column:</p>
<p>  //Set the summary field. The field on which the summary will be calculated.<br />
		  var sf1:SummaryField = new SummaryField(&#8221;monthlyFeature&#8221;);<br />
		  //Summary Function &#8211; the function that calculates the summary row display<br />
		  sf1.summaryFunction = func1;</p>
<p>		   var sf2:SummaryField = new SummaryField(&#8221;monthlyFeature&#8221;);<br />
		  //Summary Function &#8211; the function that calculates the summary row display<br />
		  sf2.summaryFunction = func2;</p>
<p>		   var sf3:SummaryField = new SummaryField(&#8221;monthlyFeature&#8221;);<br />
		  //Summary Function &#8211; the function that calculates the summary row display<br />
		  sf3.summaryFunction = func3;</p>
<p>		    //set the summary rows fields property to summaryField<br />
		  sr.fields = [sf1,sf2,sf3];<br />
 private function func1(itr:IViewCursor,field:String, str:String=null):Object<br />
        {<br />
        	var sum1:Number=0<br />
        	while(!itr.afterLast)<br />
        	{<br />
        		//trace(itr.current)<br />
        		if(itr.current.monthlyFeature.firstEvent !=null){<br />
        			var value:Number = Number(itr.current.monthlyFeature.firstEvent.duree);<br />
        			if(!isNaN(value))<br />
        			{<br />
        		 	 sum1+= value<br />
        			}</p>
<p>        		}<br />
        		itr.moveNext()<br />
        	}<br />
        	return sum1<br />
        }<br />
         private function func2(itr:IViewCursor,field:String, str:String=null):Object<br />
        {<br />
        	var sum2:Number=0<br />
        	while(!itr.afterLast)<br />
        	{<br />
        		//trace(itr.current)<br />
        		if(itr.current.monthlyFeature.secondEvent !=null){<br />
        			var value:Number = Number(itr.current.monthlyFeature.secondEvent.duree);<br />
        			if(!isNaN(value))<br />
        			{<br />
        		 	 sum2+= value<br />
        			}</p>
<p>        		}<br />
        		itr.moveNext()<br />
        	}<br />
        	return sum2<br />
        }<br />
        private function func3(itr:IViewCursor,field:String, str:String=null):Object<br />
        {<br />
        	var sum3:Number=0<br />
        	while(!itr.afterLast)<br />
        	{<br />
        		//trace(itr.current)<br />
        		if(itr.current.monthlyFeature.thirdEvent !=null){<br />
        			var value:Number = Number(itr.current.monthlyFeature.thirdEvent.duree);<br />
        			if(!isNaN(value))<br />
        			{<br />
        		 	 sum3+= value<br />
        			}</p>
<p>        		}<br />
        		itr.moveNext()<br />
        	}<br />
        	return sum3<br />
        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raj</title>
		<link>http://blog.flexgeek.in/2007/06/tips-tricks-advanceddatagrid-grouping-summary-rows/comment-page-1/#comment-2294</link>
		<dc:creator>Raj</dc:creator>
		<pubDate>Tue, 09 Jun 2009 17:24:13 +0000</pubDate>
		<guid isPermaLink="false">http://flexgeek.wordpress.com/2007/06/14/tips-tricks-advanceddatagrid-grouping-summary-rows/#comment-2294</guid>
		<description>I did realize that , the sum does not work when I have XMLListCollection as the data provider source .

if i access the xml directly from the http Service it works fine .


 if i do in my dataprovider for ADG as test.lastResult.root.data it works fine .
but if I do the following 


inisde the event i do public function showReports(event:ResultEvent):void {
      
      	reportList = event.result as XML;    
    	_xlcCatalog = new XMLListCollection(reportList.Product);
    	
  	}


 and then set xlcCatalog  as the Data Provider and Group Source .
  in Both Cases Grouping works but sum does not work in this case .</description>
		<content:encoded><![CDATA[<p>I did realize that , the sum does not work when I have XMLListCollection as the data provider source .</p>
<p>if i access the xml directly from the http Service it works fine .</p>
<p> if i do in my dataprovider for ADG as test.lastResult.root.data it works fine .<br />
but if I do the following </p>
<p>inisde the event i do public function showReports(event:ResultEvent):void {</p>
<p>      	reportList = event.result as XML;<br />
    	_xlcCatalog = new XMLListCollection(reportList.Product);</p>
<p>  	}</p>
<p> and then set xlcCatalog  as the Data Provider and Group Source .<br />
  in Both Cases Grouping works but sum does not work in this case .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raj</title>
		<link>http://blog.flexgeek.in/2007/06/tips-tricks-advanceddatagrid-grouping-summary-rows/comment-page-1/#comment-2292</link>
		<dc:creator>Raj</dc:creator>
		<pubDate>Mon, 08 Jun 2009 23:28:24 +0000</pubDate>
		<guid isPermaLink="false">http://flexgeek.wordpress.com/2007/06/14/tips-tricks-advanceddatagrid-grouping-summary-rows/#comment-2292</guid>
		<description>Could you pls email the source . Maybe I can take a look @ that.</description>
		<content:encoded><![CDATA[<p>Could you pls email the source . Maybe I can take a look @ that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raj</title>
		<link>http://blog.flexgeek.in/2007/06/tips-tricks-advanceddatagrid-grouping-summary-rows/comment-page-1/#comment-2291</link>
		<dc:creator>Raj</dc:creator>
		<pubDate>Mon, 08 Jun 2009 21:00:58 +0000</pubDate>
		<guid isPermaLink="false">http://flexgeek.wordpress.com/2007/06/14/tips-tricks-advanceddatagrid-grouping-summary-rows/#comment-2291</guid>
		<description>I did try to use the bit of the grouping and sunnimg , but for some reason , i can never get it work . The grouping wors . But Summing does not work .I think I have missed something . Cause if i do an alert of itr.current.SelectedMonthTotals I always get a blank value .

Here is what I have done .

//Make a grouping collection
 mygroup=new GroupingCollection();
//Set the source to the array collection (this case dataProvider)
mygroup.source = _xlcCatalog;
//Create a new grouping
var group:Grouping = new Grouping();
group.groupingObjectFunction = grpObjFunc;
//Group on Quarter
 gf = new GroupingField(&quot;siteNumber&quot;);
//Set the fields to the grouping
group.fields = [gf];
//Finally, Set the group to the grouping property of groupedCollection
mygroup.grouping = group;
//Refresh the group
//Set the dataProvider to the grouping collection
//Call validateNow() to redraw the dg.

adg.dataProvider = mygroup;
mygroup.refresh();
adg.validateNow();
var sr:SummaryRow = new SummaryRow();
//Set the summaryObjectFunction
//This function tells ADG to add a summary row in addition to the existing data
sr.summaryObjectFunction = objFunc;
//Set the summary field. The field on which the summary will be calculated.
var sf:SummaryField = new SummaryField(&quot;SelectedMonthTotals&quot;);
//Summary Function - the function that calculates the summary row display
sf.summaryFunction = func;
//set the summary rows fields property to summaryField
sr.fields = [sf];
//Place the summary row (Last means data First, summary Last!)
sr.summaryPlacement = &quot;last&quot;;
//Group on Quarter
//var gf1:GroupingField = new GroupingField(&quot;siteNumber&quot;);
//set the summary row(s) to groupingField
gf.summaries=[sr];
mygroup.refresh();
adg.validateNow();


Grouping works fine , but Summary row does not show up . It shows up as 0 always .
	private function objFunc():SummaryObject
{
	
var obj:SummaryObject = new SummaryObject();
obj.summary = true;
return obj;
}

private function func(itr:IViewCursor,field:String, str:String=null):Object
{
	
var sum:Number=0
while(!itr.afterLast)
{
	

var value:Number = Number(itr.current.siteNumber);
Alert.show(&#039;value&#039;+itr.current.siteNumber);
if(!isNaN(value))
{
sum+= value
}
itr.moveNext()
}
return sum
}</description>
		<content:encoded><![CDATA[<p>I did try to use the bit of the grouping and sunnimg , but for some reason , i can never get it work . The grouping wors . But Summing does not work .I think I have missed something . Cause if i do an alert of itr.current.SelectedMonthTotals I always get a blank value .</p>
<p>Here is what I have done .</p>
<p>//Make a grouping collection<br />
 mygroup=new GroupingCollection();<br />
//Set the source to the array collection (this case dataProvider)<br />
mygroup.source = _xlcCatalog;<br />
//Create a new grouping<br />
var group:Grouping = new Grouping();<br />
group.groupingObjectFunction = grpObjFunc;<br />
//Group on Quarter<br />
 gf = new GroupingField(&#8221;siteNumber&#8221;);<br />
//Set the fields to the grouping<br />
group.fields = [gf];<br />
//Finally, Set the group to the grouping property of groupedCollection<br />
mygroup.grouping = group;<br />
//Refresh the group<br />
//Set the dataProvider to the grouping collection<br />
//Call validateNow() to redraw the dg.</p>
<p>adg.dataProvider = mygroup;<br />
mygroup.refresh();<br />
adg.validateNow();<br />
var sr:SummaryRow = new SummaryRow();<br />
//Set the summaryObjectFunction<br />
//This function tells ADG to add a summary row in addition to the existing data<br />
sr.summaryObjectFunction = objFunc;<br />
//Set the summary field. The field on which the summary will be calculated.<br />
var sf:SummaryField = new SummaryField(&#8221;SelectedMonthTotals&#8221;);<br />
//Summary Function &#8211; the function that calculates the summary row display<br />
sf.summaryFunction = func;<br />
//set the summary rows fields property to summaryField<br />
sr.fields = [sf];<br />
//Place the summary row (Last means data First, summary Last!)<br />
sr.summaryPlacement = &#8220;last&#8221;;<br />
//Group on Quarter<br />
//var gf1:GroupingField = new GroupingField(&#8221;siteNumber&#8221;);<br />
//set the summary row(s) to groupingField<br />
gf.summaries=[sr];<br />
mygroup.refresh();<br />
adg.validateNow();</p>
<p>Grouping works fine , but Summary row does not show up . It shows up as 0 always .<br />
	private function objFunc():SummaryObject<br />
{</p>
<p>var obj:SummaryObject = new SummaryObject();<br />
obj.summary = true;<br />
return obj;<br />
}</p>
<p>private function func(itr:IViewCursor,field:String, str:String=null):Object<br />
{</p>
<p>var sum:Number=0<br />
while(!itr.afterLast)<br />
{</p>
<p>var value:Number = Number(itr.current.siteNumber);<br />
Alert.show(&#8217;value&#8217;+itr.current.siteNumber);<br />
if(!isNaN(value))<br />
{<br />
sum+= value<br />
}<br />
itr.moveNext()<br />
}<br />
return sum<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://blog.flexgeek.in/2007/06/tips-tricks-advanceddatagrid-grouping-summary-rows/comment-page-1/#comment-2271</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 04 Jun 2009 13:25:05 +0000</pubDate>
		<guid isPermaLink="false">http://flexgeek.wordpress.com/2007/06/14/tips-tricks-advanceddatagrid-grouping-summary-rows/#comment-2271</guid>
		<description>Hi Siva:

You can use a simple filterFunction on your dataProvider to filter out rows based on column parameters. 

Take a look at peter&#039;s posts on filterFunction here - blog.flexexamples.com/tag/filterfunction/ 

Hope that helps!
Thanks!</description>
		<content:encoded><![CDATA[<p>Hi Siva:</p>
<p>You can use a simple filterFunction on your dataProvider to filter out rows based on column parameters. </p>
<p>Take a look at peter&#8217;s posts on filterFunction here &#8211; blog.flexexamples.com/tag/filterfunction/ </p>
<p>Hope that helps!<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Siva</title>
		<link>http://blog.flexgeek.in/2007/06/tips-tricks-advanceddatagrid-grouping-summary-rows/comment-page-1/#comment-2270</link>
		<dc:creator>Siva</dc:creator>
		<pubDate>Thu, 04 Jun 2009 13:16:17 +0000</pubDate>
		<guid isPermaLink="false">http://flexgeek.wordpress.com/2007/06/14/tips-tricks-advanceddatagrid-grouping-summary-rows/#comment-2270</guid>
		<description>Hey Harish,

I&#039;m facing an issue to skip some rows while rendering the data using advanceddtagrid. I have requirement that I need to avoid some records based on the other column value. ie. If I have a table with the fields Name, Sex.
I should display only names who are male. Can you please send me an example if possible to my mailid.

Thanks,
Siva</description>
		<content:encoded><![CDATA[<p>Hey Harish,</p>
<p>I&#8217;m facing an issue to skip some rows while rendering the data using advanceddtagrid. I have requirement that I need to avoid some records based on the other column value. ie. If I have a table with the fields Name, Sex.<br />
I should display only names who are male. Can you please send me an example if possible to my mailid.</p>
<p>Thanks,<br />
Siva</p>
]]></content:encoded>
	</item>
</channel>
</rss>
