I downloaded the latest hotfix for 2.0 as I needeed it to get some of my issues resolved. All my existing problems have been resolved by the hotfix,
however it created a new problem. The grid header is not displayed right anymore. There is a grey area surrounding the header, looks very bad.
All my grids' headers in my app dont look good. Is there going to be another hotfix soon for it.....
Thanks.
I am attaching the screen shot. I didn't have this problem prior to downloading the hotfix and nothing changed as far as code is concerned.
Here is my code: it is pretty straight forward......
<igDP:XamDataGrid x:Name="diagnosisGrid" GroupByAreaLocation="None" Background="WhiteSmoke">
<igDP:XamDataGrid.FieldLayoutSettings>
<igDP:FieldLayoutSettings AddNewRecordLocation="OnTopFixed" AllowAddNew="True" />
</igDP:XamDataGrid.FieldLayoutSettings>
<igDP:XamDataGrid.FieldLayouts>
<igDP:FieldLayout>
<igDP:FieldLayout.Fields>
<igDP:Field Name="ID" Visibility="Collapsed" />
<igDP:Field Name="Description" Visibility="Collapsed" />
<igDP:Field Name="Rank" Label="#">
<igDP:Field.Settings>
<igDP:FieldSettings LabelClickAction="Nothing" CellWidth="25" LabelWidth="25" AllowEdit="False"/>
</igDP:Field.Settings>
</igDP:Field>
<igDP:Field Name="Name" Label="Impression">
<igDP:FieldSettings LabelClickAction="Nothing" CellWidth="180" EditorStyle="{StaticResource diagnosisComboBoxEditor}"/>
<igDP:Field Name="Comments" Label="Plan">
<igDP:FieldSettings LabelClickAction="Nothing" CellWidth="470" />
</igDP:FieldLayout.Fields>
</igDP:FieldLayout>
</igDP:XamDataGrid.FieldLayouts>