Is it possible to use the aggregatedatasource to show all "parents" and theirs "children" where at least one "children" is created by the current user ?
To be more clear, imagine the following :
- parent 1
- child 1.1 created by Alice
- child 1.2 created by Bob
- child 1.3 created by Bob
- parent 2
- child 2.1 created by Bob
- child 2.2 created by Bob
- parent 3
- child 3.1 created by Charly
- child 3.2 created by Bob
- child 3.3 created by Alice
I'd like to build a webpart that will show when Alice display the page:
- parent 1
- child 1.1 created by Alice
- child 1.2 created by Bob
- child 1.3 created by Bob
- parent 3
- child 3.1 created by Charly
- child 3.2 created by Bob
- child 3.3 created by Alice
thx in advance