Is there any way to merge cells (vertically and/or horizontally) in a datagrid? At least, for example, is there a way to show that certain datagridcolumns belong to one group.

For example, I'll take three columns: column1, column2, column3. All these three should be grouped to the Category cell with a rowspan of 3 -- a "super header" if you will.

Thanks, let me know.

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

This should create a Split Header according to Alex Harui:

http://blogs.adobe.com/aharui/2007/03/thinking%5Fabout%5Fitem%5Frenderers%5F1.html

http://blogs.adobe.com/aharui/SplitColumns/dg.swf

Similarly, instead of trying to merge two cells horizontally: try splitting one cell into two cells using and itemRenderer for the dataGridColumn.

link|improve this answer
feedback

Like the other posters said, the AdvancedDataGrid supports col span via renderer providers, as well as split headers - but not true row span, col span or cell merge as you would expect from a HTML table. This is something that we have just added to Flexicious Ultimate however. http://blog.flexicious.com/post/Flex-DataGrid-RowSpan-ColSpan-and-Cell-Merge.aspx

link|improve this answer
Just a quick clarification - although the ADG exposes a rowSpan property, it is not actually supported there: flexpearls.blogspot.com/2009/06/… Sreenivas said... rowSpan is not supported in ADG/ODG. It is a place holder property for future use. – flexicious.com Nov 9 '11 at 0:42
feedback

AFAIK, no. Let someone correct me, but I've gone through the trouble to write my own table control to get around this. The Grid has the span concept though.

That is, I mean horizontal grouping. The AdvancedDataGrid supports row-grouping, but I've never used it so I can't go into specific examples.

link|improve this answer
feedback

I have found that a free MecGrid component solves this merging cells problem (it includes other cool features). But this custom component also misses a lot of other features found in standard FlexComponents.

http://code.google.com/p/flexspreadsheet/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.