This question is locked. New answers and comments are not allowed.
Hi,
I need to data group by department. In the Group descriptor row I need to display two values. I tried in the following but unable to see the columns at run time . Here I am attaching the file in which format has to be displayed in group header.
I need to data group by department. In the Group descriptor row I need to display two values. I tried in the following but unable to see the columns at run time . Here I am attaching the file in which format has to be displayed in group header.
| <data:GroupDescriptor Member="Department"> |
| <data:GroupDescriptor.DisplayContent > |
| <DataTemplate> |
| <Grid> |
| <Grid.ColumnDefinitions> |
| <ColumnDefinition Width="*"></ColumnDefinition> |
| <ColumnDefinition Width="30"></ColumnDefinition> |
| </Grid.ColumnDefinitions> |
| <TextBlock Text="{Binding Department}" Grid.Column="0"></TextBlock> |
| <Image Grid.Column="1" |
| Width="13" Source="../../Images/button_more_details.png" |
| Height ="15" Margin="0,0,5,0" HorizontalAlignment="Left"></Image> |
| </Grid> |
| </DataTemplate> |
| </data:GroupDescriptor.DisplayContent> |
| </data:GroupDescriptor> |
