﻿<?xml version="1.0" encoding="utf-8"?><rss 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:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebGrid Enterprise - Group totals across pages?</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Group-totals-across-pages/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Group totals across pages?</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Group-totals-across-pages/</link><pubDate>Tue, 03 Nov 2009 22:07:36 GMT</pubDate><dc:creator>Glayaar</dc:creator><description>&lt;p&gt;In your scenario, the calculation must be done on the datasource. The provided WebGrid information will not be sufficient for the scenario.&lt;/p&gt;</description></item><item><title>Group totals across pages?</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Group-totals-across-pages/</link><pubDate>Tue, 03 Nov 2009 08:07:26 GMT</pubDate><dc:creator>pmdaniel</dc:creator><description>&lt;p&gt;Thanks.  I tried that, but I can't access all the rows for the group. When I code e.Rows in the CustomAggregate event stated above, it only brings back the rows on the current page.  I assume I'll have to go back to the dataset to perform my calcs instead of depending on the grid?  I can grab my grooupby value and use it to sum up my columns in the dataset? Is there an easier/cleaner way I'm  missing by using this customaggregate?&lt;/p&gt;</description></item><item><title>Group totals across pages?</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Group-totals-across-pages/</link><pubDate>Mon, 02 Nov 2009 21:06:16 GMT</pubDate><dc:creator>Glayaar</dc:creator><description>&lt;p&gt;You could use the Custom AggegrateFunction property. This way you could handle the aggegrate function and return the total value that will comply with your scenario. The event handler will be handled by CustomAggegrate server side event. Here is the snippet:&lt;/p&gt;&lt;p /&gt;&lt;pre&gt;protected void WebGrid1_CustomAggregate(object sender, ISNet.WebUI.WebGrid.CustomAggregateArgs e)
{
    if (e.Column.Name == [ColumnName])
    {
        //Get the GroupTotal using custom function
        e.AggregateResult = GetTotal();
    }
}&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p /&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Group totals across pages?</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Group-totals-across-pages/</link><pubDate>Mon, 02 Nov 2009 11:32:40 GMT</pubDate><dc:creator>pmdaniel</dc:creator><description>&lt;p&gt;We have the latest grid control and are looking to see if it is possible to have the entire group total in the group footer on a page when the group crosses multiple pages?  If the group starts and ends on 1 page, the group total works, but if it goes more than 1 page, the group total shows the total just for the page. Can it be adjusted to show the accumulated total for the group instead of the rows being displayed on the page? &lt;/p&gt;
&lt;p&gt;Thanks in advance!&lt;/p&gt;</description></item></channel></rss>