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
160
UltraComboEditor requires tab off to update data?
posted

I have an UltraComboEditor inside an UltraGrid.  The UltraComboEditor is not bound and I populate it using the Items.Add(UserId, DisplayName) method.  I see my list of populated and when I go to choose a value from the list and click "Save" nothing persists in the objects/database.  If I tab off the UltraComboEditor, the change is pushed to my object and persists.  How do I allow the user to simply change the value and click Save to make it work?

The UltraGrid is bound to a BindingSource.  I do EndEdits on the Save.  The UltraComboEditor is NOT in EditMode at this point, because the control lost focus.

Me.UltraGrid2.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.ExitEditMode)
Me.UserBindingSource1.EndEdit()

Parents Reply Children
No Data