Data Grid

  • Thread starter Thread starter Chris Wilmot
  • Start date Start date
C

Chris Wilmot

Does anyone know how to make a datagrid row selection only.

I have a data grid with a list of jobs. on selecting a field I want the
whole line to be selected not the specific col & row

Thanks in advance

Chris Wilmot
 
Chris Wilmot said:
Does anyone know how to make a datagrid row selection only.

I have a data grid with a list of jobs. on selecting a field I want the
whole line to be selected not the specific col & row

Thanks in advance

Chris Wilmot

One way would be to inherit the Grid and in the cell selection select the
entire row, or without inheriting the grid, just tap the events of the
underlying data table's cell changing event and do it there.

HTH,
Jeremy
 
Back
Top