Let's say I have three panes with three collection of data: A, B, and C
I want each pane to always display its full list of data.
But, data are also interconnected: data in A points to some data in B,
which points to data in C.
So that when I select some data in a pane (say A), I dont want the
other panes to filter their data, I just want them to update their
selection.
is that currently possible in Glamour?
Some ascii art to the rescue :)
When I select a1, I want b1 and b3 selected in B, and as a consequence
c2, c4, and c5 are also selected in C
A | B | C
a1* | b1* | c1
a2 | b2 | c2*
a3 | b3* | c3
| b4 | c4*
| | c5*
--
Simon