views:

13

answers:

0

When you create a RowDetailsTemplate in a Silverlight grid you can specify a template for row details that is shown directly below the row when it is selected.

The details I have for one of my datagrids would look a lot better immediately before each individual row, rather than after it.

I've tried modifying the template in Blend, but end up getting stuck when I get to this part of the template:

<sdk:DataGridRowsPresenter x:Name="RowsPresenter" 
 Grid.ColumnSpan="2" Grid.Row="1"/>

There does not seem to be an associated template for DataGridRowsPresenter so I cannot seem to find how I might be able to move the details above the row.

Is this possible?