Hi,
I have added an empty StatRow to the FixedFooters of the Grid's view:
<xcdg:DataGridControl
x:Name="myGrid" Height="400">
<xcdg:DataGridControl.View>
<xcdg:TableView>
<xcdg:UIViewBase.FixedFooters>
<DataTemplate>
<xcdg:StatRow>
</xcdg:StatRow>
</DataTemplate>
</xcdg:UIViewBase.FixedFooters>
</xcdg:TableView>
</xcdg:DataGridControl.View>
</xcdg:DataGridControl>
The grid contains a column of type "bool":
_dataGridCollectionView.ItemProperties.Add(
new DataGridItemProperty("Cancellation", "Cancellation", typeof(bool), true));
The other columns are of types: int, int?, decimal, datetime?, string.
When I run my program, the StatRow displays a True-image (a checked checkbox) in the "Cancellation" column.
All other cells of the StatRow are empty as expected.
Why so? How can I get rid of the unwanted checkbox?
Can you confirm this behaviour?
Michael.