I have a matrix where all the columns are connected to user data sources. The user can enter/edit data. When the user tabs off one particular column, I bring up a search screen where the user can select a value/item, but how do you set the matrix cell value to the value/item selected by the user?
I have tried:
SAPbouiCOM.EditText edText = (EditText)Grid.Columns.Item("Col3").Cells.Item(SomeRowNumber).Specific;
edText.Value = SomeNewValue;
But this does not work. I have also tried setting the value of the user data source bound to the column but that also does not work. Any help would be greatly appreciated.
Add a comment