Hi Sergio Ayala,
We would like to let you know that the cell value of GridComboBoxColumn will be
updated only while changing the underlying property (MappingName) that is bound
to the column. The reported problem occurs because the MappingName bound
property is not in the underlying model. Please refer to the below screenshot.

We suspect that you have bound the DataSource for your GridComboBoxColumn as
"CboGirisModel". You have used the ParticipantModel as the underlying
model or business object of your DataGrid bound DataSource. And you have used
the "Descripcion" property as a MappingName in GridComboBoxColumn.
But the description property is not present in the underlying model, i.e., the
ParticipantModel. That only the selected data is not displayed after lost focus in GridComboBoxColumn.
You can resolve the reported problem by adding the
Descripcion property to the ParticipantModel. Please refer to the below code
snippet,
public class ParticipantModel
{
public string? Descripcion { get; set; }
}
|
Please let us know if you have any concerns in this.
Regards,
Vijayarasan S
If this post is helpful, please consider Accepting it as the solution so that
other members can locate it more quickly.