CFGRIDCOLUMN blank valueDisplay question

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default CFGRIDCOLUMN blank valueDisplay question

    I want to make a cfgridcolumn using the dropdown box to display values. In this
    case I want to display a "blank" line so the user can choose no number or 1,2,
    or 3. How can I do this. With the code below all that shows is 1,2,3 no blank
    like it should. I have tried #chr(32)#,1,2,3 in the valuesDisplay also and that
    does not work. Anyone have any ideas?


    <cfform>
    <cfgrid name="gridCustomer" query="customer" width="600" height="400"
    sort="yes" insert="yes" delete="yes" selectmode="edit" picturebar="yes"
    autoWidth="yes">

    <cfgridcolumn name = "number" header = "NUMBERS" values = "0,1,2,3"
    valuesDisplay = ",1,2,3">

    </cfgrid>
    </cfform>

    JakeFlynn Guest

  2. Similar Questions and Discussions

    1. Flash CFGRIDCOLUMN Help
      Hey all, I'm using CFMX7. I'm curious if anyone has successfully used the Type="image" and/or the textColor= "(C2 LT 0 ? red : pink)",...
    2. cfgridcolumn and numberformat
      hello! how do we have to use the numberformat function in a flash-cfgrid? we want to achieve international number formats, e.g.: ?123.456,00 within...
    3. Help with CFGridColumn and Href
      I must be missing something. Yes this works but only if I hard code the file names.... ..."when you query your db, and one of the columns have...
    4. cfgridcolumn value control
      When displaying a grid column value isn't possible to control the value displayed instead of what is actually in the database? I used the following...
    5. preloading blank clips question
      Hello. I am loading my movie with a preloader in a preload scene with the main movie loading up with onFrameEnter's that load swf's into blank...
  3. #2

    Default Re: CFGRIDCOLUMN blank valueDisplay question

    *bump*
    JakeFlynn Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139