Marcia G Akins (09/04/2008)
One of my search fields is and Active Flag and it is a bit field. Is there any way that I can display this seach field as a checkbox?I am not sure this is supported by the Browser Dialog by default, but this is what I did for the same situation, and instead of a checkbox, I am using a combobox with an Enum.
Create your Enum in any of your class like this:
Public
Enum InactiveStatus As Integer <EnumDisplayValue(
"No")> _
No = 0
<EnumDisplayValue("Yes")> _
Yes = 1End
EnumThen in your Browser Dialog (BD) add the field in the SearchFields property and use the Combo-Enum like this:
Run your application and it should look like this:
So if this is not yet supported, that should keep you going without another martini , and this could be a nice enhancement, that SF add a checkbox option for Bit fields.