I have a grid and I want to show more detail in the grid, if the row is selected.
Something ideal would be a "SelectedTemplate", e.g.
<GridColumn Field="Details" HeaderText="Details" >
<Template> <div>When Not Selected</div></Template>
<SelectedTemplate> <div>When Selected, more data is shown</div></
Selected
Template>
</GridColumn>
Is there an easy way to achieve this? I thought of using EditTemplate, but that requires the user to double click the row.