Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
3555
get row, cell values when grid is grouped...
posted
when the grid is grouped and I am in an active cell, how do I get the values
of the other columns in that same row as the active cell
  • 469350
    Offline posted

     It doesn't make any difference if the grid is grouped or not. You access the cells in a row the same way. If you are starting from the ActiveCell, you would get the Row (via the Row property of the cell) and then use the Cells collection. Something like this:

     this.ultraGrid1.ActiveCell.Row.Cells["Key of the column I want"].Value