Hi,
When I click on a row in my grid ( in any column ) the following code returns a Count of 0
{ ... }
but when I change the property/extend the first cell and click on the little box on the left, row gets selected just fine and code above returns a Count = 1
How can select row by clicking in any column instead of the little box provided by the grid? Thank You
Take a look at the Override object's CellClickAction property. I think that is what you are looking for,
Thank You Darrell
CellClickAction is exactly what I needed, the following code in InitializedLayout solved my problem
e.Layout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;