AdobeStock_455007340

Summarizing Grouped Data With Flex 3 AdvancedDataGrid

Last week I showed how to use the new Flex 3 AdvancedDataGrid to group data (that example used ColdFusion data returned as a query, although the example could also be applied to other back-ends, too). Grouping creates a tree within the data grid, so that groups of data may be collapsed and expanded as needed.
Now let’s take the example a step further, this time adding summary data. For example, suppose you were displaying sales orders, grouped by customer and then by order number. When collapsed the tree would list all customers, but no details. When a customer was expanded the tree would list all orders for that customer, but no details. When a specific order was expanded, then the details for that order would be displayed. That’s how basic grouping works.
But what if you wanted to show summary data for groups? For example, customer rows could show total of all orders for that customer, regardless of how many orders there were, and whether or not the customer group is expanded or collapsed. And then order rows could show order totals. You get the idea. And yes, this functionality is built in to the Flex 3 AdvancedDataGrid.
As before, this is a ColdFusion powered example using the default database tables that come with ColdFusion 8. Here is the simple CFC method which just returns several columns from three tables:




SELECT orders.orderid,
artname, orderitems.price,
customerlastname || ', ' || customerfirstname AS customer
FROM orders, orderitems, art
WHERE orders.orderid=orderitems.orderid
AND orderitems.artid=art.artid
ORDER BY customer, orders.orderid




I saved this component as art.cfc in a folder named test beneath the web root. You can save it wherever you like, but of course you’ll need to adjust the path in the MXML accordingly. (If you tried the previous example, you could just add this getOrders() method to the existing CFC.
Now for the MXML:














































I am not going to explain the basics of invoking the CFC method via , populating the GroupingCollection, and refreshing the . That was covered in the previous post. Rather, let’s look at what has changed.
First of all, to make it easier to expand and collapse the tree within the , I added a containing two buttons, one to expand all rows and one to collapse all rows.
As before, is used to define the grouping levels. In the previous example a single level of grouping was used, here two are used (to group by customer, and then by order id within customer). In the previous example had no child tags, because simple grouping was used. Here, has been added to each so as to summarize data by those groups. can display summary data at the group level, as well as at the first or last member within the group, as specified by the “summaryPlacement” attribute. A contains one or more fields to be summarized. Here a single is used for each to “SUM” the total of that group, putting the result in a column named “Total”. The “operation” attribute specifies the summary to be performed, and AVG, COUNT, MAX, MIN, and SUM are all built-in and ready for use. It is also possible to perform your own calculations, specifying an ActionScript function to be called instead of one of the built-in operations.
And as before, is used to list the columns within the . But here, two non-database columns have been added. An empty column has been inserted at the front of the list. This forces to display the tree in its own column, rather than in the actual data column (and this technique can be used whether or not summary data is being displayed). In addition, a row named “Total” has been added to the end of the column list to display the summary totals. The tags point to the “Total” as the destination for calculated summary data. This is optional, the “Total” column could have been omitted (both from the list and from the tags) in which case the summary values would have been displayed within the field being summarized (in this example the “PRICE” column).
As you can see, adding summary data to an is not at all difficult once grouping has been implemented.
One last note, the example data used here is not ideal, as each customer has a single order, and only one order (for customer “White, Sue”) has more than one item. You may want to add some data to the example tables to better demonstrate how summary data works. Or just use your own data.

6 responses to “Summarizing Grouped Data With Flex 3 AdvancedDataGrid”

  1. Steve Walker Avatar
    Steve Walker

    Ben,
    Great help. Thank you!

  2. GG Avatar
    GG

    Ben,
    In this example, is there a way to have different operations at different levels. Say, for example, we find the total price per order and then, what was the max. order that each customer ever had. I tired doing that but the operation works on the root fields only and not on the summarized data. Could you help?
    Thanks in advance,
    GG

  3. Ben Forta Avatar
    Ben Forta

    You can definitely do that using a custom summary function.
    — Ben

  4. Ambika Avatar
    Ambika

    I am trying to build advanced grid dynamically based on results of a query. It has to be dynamic, because the #of columns would change and the headers would change based on selection of a combo box on the page. I would like to build dynamic column grouping. I need help on how I can achieve this dynamically. In what format should the structure be and how do I assign the group headers dynamicaly. I can send you the code.
    Thanks a lot. Your website is heaven sent!

  5. George Avatar
    George

    Ben, I am finally figuring stuff out. I have a summary column, that sum’s things up but the format is not what I want I have tried a few things itemRenderer, rendererProviders etc. My other columns that use the itemRenderer work great and display 2 decimal places. Is there a trick?
    George

  6. Roberto Kalili Avatar
    Roberto Kalili

    Thanks for your post.
    I ned some help with ADG. I need, using filterFunction, I think, filter ADG data when the summary value is between 2 values selected into slider component, e.g, if total of values is between 10 and 20 (values setted in slider component dinamically).
    Could you help me please? (sorry about my english)
    thank you again
    Roberto

Leave a Reply