Glossary Item Box
You can modify xamDataCarousel™, xamDataGrid™, and xamDataPresenter's™ selection functionality for Cells, Records, and Fields. Use the SelectionType enumeration to choose the selection strategy that best fits your application. Control the selection by setting the SelectionTypeCell, SelectionTypeRecord, or SelectionTypeField property off the FieldLayoutSettings object.
The following procedure assumes you have a data bound xamDataGrid for which you want to change the selection behavior. For more information on data binding xamDataGrid, see Creating xamDataGrid in XAML. The settings in this procedure would be similar to those of xamDataCarousel and xamDataPresenter.
To change the selection type for cells, records, and fields:
In XAML:
<igDP:XamDataGrid
...
>
<igDP:XamDataGrid.FieldLayoutSettings>
<igDP:FieldLayoutSettings
SelectionTypeCell="Extended"
SelectionTypeRecord="Extended"
SelectionTypeField="Single" />
</igDP:XamDataGrid.FieldLayoutSettings>
</igDP:XamDataGrid>
