I have a ComboEditor containing several values. The validation (IsItemInList()) works fine if I select the value from the pulldown, but if I type the value into the combo, then the IsItemInList() call always returns false. It is typed exactly as it is in the combo. Any ideas?
In what event are you performing this validation, and what's the code you're using in your IsItemInList() call?
I am firing this method in the validate event. It looks like this was working before we moved to 8.1.. any ideas?
I'm not sure which event I'm using for valiation (most likely on exit, or focus lost) but I got the desired result by checking if SelectedItem != null. This seems to work