I am new to infragistics and am trying to find the grid row that fires when a change is made to a dropdown on the row, in the grid. I know when the dropdown changes, but can't find correct event to get the grid row's other column info.
So far I've tried updaterowbatch, updaterow, updategrid, updatecellbatch, updatecell and none seem to fire on postback.
I'm sure I'm missing something simple that someone has found long ago...
Thanks!
You can get the row which cell's been updated within the arguments of the UpdateCell event
protected void grid1_UpdateCell(object sender, CellEventArgs e)
{
UltraGridRow row = e.Cell.Row;
}
i'm just not seeing this event fire when the drropdown changes or on postback