Hi there,
I have a UltraCombo embedded in a UltraGrid ...
Does the AfterCellUpdate event for the UltraGrid fire before the value has been changed in the UltraCombo ?I'm asking this because the this._ucEmployees.SelectedRow is NULL for the first time ( inside the AfterCellUpdate event ! ), after I've selected some value in the UltraCombo ...
The 2nd time I change some values, the this._ucEmployees.SelectedRow is NOT null anymore ... but the selected value :-/
rgd,EE
I tried to make the value of the SelectedRow NOT null with this ... ( see the TOP line )
this
._ucEmployees.SelectedRow = e.Cell.Row;
{
].Value.ToString();
._employeeName;
._displayMonths)
//Changing all aaocations to new employee
._displayMonths.IndexOf(month)]);
.SaveAllocation(e.Cell.Row.Cells[month.MonthID.ToString()], employeeId, projectId, month.MonthID, allocationId);
--------
But I get this exception:System.ArgumentException: invalid row passed in RowScrollRegion.ScrollRowIntoViewWhy is the SelectedRow ( inside the AfterCellUpdate event inside the UltraGrid ! ) NULL in the UltraCombo null for the first time I select a row ?
ignore this ... I found out what the problem was