I need to capture when a row is clicked, not an individual cell. Looked at header click events but did not find what I need.
How to I capture when a row is selected by clicking the side bar of the grid?
How would I capture a single click to the side bar of the grid that selects the row when it's clicked once? The row gets highlighted when the sidebar cell is clicked so I would expect some event is raised.
you could then use the ultraGrid1.ActiveRow object.
how about afterRowActivate - that may do it as well.
I was hoping for a RowClick or someway to notify when a row is selected in the grid so I can set a variable to the column value of the newly selected row. Worse case, I will just tell people they need to double click to set the new value of the variable.
there is a doubleClickRow event.... not sure if that helps you or not.