1

Is it possible to build a hierarchical advanced data grid (or similar) without using hierarchical data pre-built?

For example, if I want to show in the advanced data grid (or similar):

Men John Frank

Women Mary Susan Sally

But my data looks like this (2 fields):

John Men Mary Women Frank Men Susan Women Sally Women

So basically I want to take flat data, group it by Men/Women and then display a hierarchical advanced data grid by that grouping (or hopefully more than one grouping / tree).

??

Scott Szretter
  • 3,938
  • 11
  • 57
  • 76
  • I'm not sure what you mean by grouping. How do you imagine how it's going to show in the datagrid? You can group columns together, but that's it unless you create a tree of sorts. – J_A_X May 29 '11 at 13:19

1 Answers1

1

Take a look at GroupingCollection. If you are using Flex 4+ you should use GroupingCollection2 instead.

Gerhard Schlager
  • 3,155
  • 1
  • 31
  • 53