I have a dropdown field in a flygrid that picks up it's values from a Enum e.g.
Public Enum myYesNo
Yes
No
End Enum
And then I have made the dropdown select 'No' as default e.g.
myYesNo.No
Which is fine, the thing I would like to do is have it display 'Select...' and then when then click on the field the dropdown appears but only showing 'Yes' and 'No'
Is there away to acheive this.
Thanks in advance
Simon