I'm using cfgrid type=html. I am creating a dropdown box in the cfgrid, however in the dropdown box it is showing the Values, instead of the ValueDisplay in the dropdown box.
<cfgrid name = "SecondGrid"
height="200" width="700"
font="arial" fontsize="12"
query = "getsecurity"
SORT="Yes"
selectmode="edit"
format="html"
insert="yes"
delete = "#deletevalue#"
>
<CFGRIDCOLUMN NAME="userrole" HEADER="User Role"
HEADERALIGN="LEFT" DATAALIGN="LEFT"
BOLD="Yes" ITALIC="No"
SELECT="Yes" DISPLAY="Yes"
HEADERBOLD="No" HEADERITALIC="Yes"
VALUES = "teacher,adminassist"
VALUESdisplay = "Teacher, Administrator" valuesDelimiter=",">
</cfgrid>
Thanks for your help!
BCo