Skip to main content
Inspiring
November 26, 2013
Question

HTML CFGRIDCOLUMN values showing up for valuesdisplay issue

  • November 26, 2013
  • 0 replies
  • 387 views

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

This topic has been closed for replies.