我有一个DataGrid,信息如下:
Associate Amount Time Customer
John Doe 2 9am Sam Smith
John Doe 2 10am Berry Cooper
Bill Ace 1 9am Sandy James
重复名称和金额变得多余,所以我希望它看起来像这样:
Associate Amount
John Doe 2
Bill Ace 1
然后,当您选择一个时,它会展开以显示所选关联的时间和客户。我希望这是有道理的......我目前只使用DataGrid,但如果需要的话我可以使用AdvancedDataGrid ......我很确定这样的事情可以做到,我只是不知道如何。
我的数据是xml,如下所示:
<stat associate="John Doe" date="08/12/09" amount="2" time="9 am" customer="Sam Smith"/>
<stat associate="John Doe" date="08/12/09" amount="2" time="10 am" customer="Berry Cooper"/>
<stat associate="Bill Ace" date="08/12/09" amount="1" time="9 am" customer="Sandy James"/>
感谢!!!