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
525
AddNewRowCell in CellExitedEditMode
posted

Hi,

I'm having some problems retrieving the value of a cell in the CellExitedEditMode event using the AddNewRowFeature.

Value's of a cell that have a column which key is linked to a field in my business object on the first level are retrieved correctly (eg executorFullName below, e.Cell.Value contains a string)
     <igGrid:TextColumn IsSortable="False" IsFixed="Left" HeaderText="Executor" Key="executorFullName" />

However: values's of a cell that have a column which key is linked to a fied in my business object on the second level are not retrieved correctly (it is null)

<igGrid:TextColumn IsSortable="False" IsFixed="Left" HeaderText="Home Base" Key="oHomeBase.description" />

e.Cell.Value of oHomeBase.description is null.

Regular editing of existing records on my grid works perfectly. The above scenario only occurs when using AddNewRow.