Hello,
I’m a new user and i started to implement a grid.
For each line in my grid, the last column may be multivalued (0, 1 or more value).
I’m loading datas from an XML :
<Students>
<Student>
<Name>Student 1 Name</Name>
<Id>1</Id>
<Courses>
<Course>
<Label>Mathematics</Label>
<Id>1</Id>
</Course>
<Course>
<Label>History</Label>
<Id>2</Id>
</Course>
</Courses>
</Student>
<Student>
<Name>Student 2 Name</Name>
<Id>5</Id>
...
</Student>
<Students>
How can i show in the last column of my grid all course label ? (Sorted list for example).
I tried to implement the example “foreign key” provided in the documentation but without success.
Thank you for your help