i have an ultraCombo that gets the data from a dataTable
adapter.Fill(_table);
ultraCombo1.DataSource = _table;
i have several controls bound to ultraCombo using databinding
ultraTextEditor1.DataBindings.Add("Text", ultraCombo1.DataSource, "Description");
binding is working ok, but if i try to modify a value from the selected row using the textEditor, the RowState does not change, and i cannot update the row using adapter.Update(_table)
note (the values change, just the RowState remains RowState.Unchanged)
resolved, forgot to call BindingContext.EndCurrentEdit() before Update