IgbDataGrid は非推奨のコントロールです。代わりに IgbGrid をご利用ください。IgbGrid での実装方法についてご不明な点がありましたら弊社技術サポートまでお問い合わせください。
IgbDataGridで行選択機能を利用するには、IgbDataGridのSelectionModeをSingleRowもしくはMultipleRowに設定してください。
@* 単一行の選択の場合 *@ <IgbDataGrid Height="100%" Width="100%" @ref="DataGridRef" ... SelectionMode="GridSelectionMode.SingleRow"> </IgbDataGrid> @* 複数行の選択の場合 *@ <IgbDataGrid Height="100%" Width="100%" @ref="DataGridRef" ... SelectionMode="GridSelectionMode.MultipleRow"> </IgbDataGrid>
サンプル
ヘルプドキュメント
- DatGridの選択 – 概要