[grid] column editor combobox does not save change

Assigning a lookup field to fieldlist and assigning an etCombobox as column's editor.

If I select this column at runtime, change combox item and post record without leaving column the changed value is not posted to the underlying field. Leaving the column is the only way to get the things working.

Do I have to live with this behavior?

Hi,


If the combobox is still open, the value is not posted. When posting, you'll need to call grid.StopEdit to post the value inside the cell, before actually calling the post method on the dataset.

Good to know. Thanks.