Hi
I have several UserControls which are databound to a dataset. I defined a property that is bindable for each of these controls and it works fine.
Except one small problem. One of these UserControls uses an UltraComboEditor and my changes are only getting saved when I leave the ComboEditor before (so it has no more focus). I tried to use the SelectChanged-event and force to write the value to the bound Property (but the value was actually there already). It seems that the value in the underlying dataset is not set or the rowstate is not changing to modified.
Any suggestions on that?
Thanks
I finally found the solution myself (as usual after asking a question ;) )
I had to delegate an ValueChangedEvent, even though my code is not linking to it...probably the DataBinding does.
I was going to say use the ValueChanged Event too. I had a similar problem.