Hi,
I have a few grids in our APP. Anytime I have wanted a value list in a cell I create and populated the valuelist, set it to the Column[""].Valuelist property in the Init event then in the after cell update event get it through e.cell.value.
Suddenly I have a grid where the value is always 0. I have to get it from e.cell.EditorResolved.Value.
Any idea why? The only difference on this form is that i am cloning the value list from another value list before i set it to the Column.Valuelist property.
Thanks.
melegant said: Suddenly I have a grid where the value is always 0. I have to get it from e.cell.EditorResolved.Value.
Thanks Brian that was it. I am using the cell change to call grid.UpdateData which fires the aftercellupdate event.