Here's what I am getting. The result of the above code is that my combo box gets attached to the Country name field in the grouping area but I wanted it to be on the field header itself. How should I get around this problem:
Can anyone answer my query?
I am doing the above mentioned problem in the following way
<igDP:Field Name="Country">
<igDP:Field.Label>
<igDP:LabelPresenter>
<ComboBox Name="Combobox1" ItemsSource="{Binding}"/>
</igDP:LabelPresenter>
</igDP:Field.Label>
</igDP:Field>
The issue is that the combo box gets attached to the buttons present in the grouping area. Although I wanted it to be visible on the column header. The data is correctly shown though. How should I get across this problem?