I want to know how to disable "multi-select" and "Delete Row" functionality of XamDataGrid.
Its urgent - please help.
Hi Josh,
How to use this in a style for all grids in program? I have 15 grids and i need to disable it in all of them, is there a way to use Style="{StaticResource XamDataGridInTabControl}" and use it in <Style> <Setter Property> or something like that?
You can turn off those features via the FieldLayoutSettings, as seen here:
<igDP:XamDataGrid> <igDP:XamDataGrid.FieldLayoutSettings> <igDP:FieldLayoutSettings AllowDelete="False" SelectionTypeRecord="Single" /> </igDP:XamDataGrid.FieldLayoutSettings></igDP:XamDataGrid>
Josh