Hi,
I trying to bind a dropDownColumn to a class property as Enum and the value in itemDataBound always nbsp. When i bind with BoundColumn it's ok, i see the value of the enum.
If i change the class property to integer, the dropDownColumn displayed correctly, but i want to keep the class property as enum.
Any workaround for this?
ty
I trying to bind a dropDownColumn to a class property as Enum and the value in itemDataBound always nbsp. When i bind with BoundColumn it's ok, i see the value of the enum.
If i change the class property to integer, the dropDownColumn displayed correctly, but i want to keep the class property as enum.
Any workaround for this?
'Do not workPublic class XYZ Public Property Status as StatusEnumEnd ClassPublic Enum StatusEnum as Integer Enabled = 0 Disabled = 1End Enum'WorkPublic class XYZ Public Property Status as IntegerEnd Classty