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
480
UltraComboEditor in UltraWinGrid with ValueList
posted

Hi all,

I'm using an UltraComboEditor as an editor in an UltraWinGrid to make a translation "Internal ID"  <-> "User Key". The UltraComboEditor has a DataTabe as the DataSource:

ID           Key
100        1
101        2
102        3
...            ....
201        100

Entering data:
DisplayMember     ValueMember
1              ->              100
2              ->              101
100         ->               100      WRONG
201         ->               201     WRONG

What do I have to do the only Values in the key-list are accepted and correctly translated?
DisplayMember      ValueMember
1                 ->           100
2                 ->           101
100            ->            201
201            ->            Not accepted