Images in a drop down

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

  1. #1

    Default Images in a drop down

    Can images be rendered in a drop down object. I create subscripts and
    superscripts as images in fireworks and then place the path of the image in a
    database field. The images are fine when placed on a page by themselves
    <cfoutput>#imagename#</cfoutput>. The problem I encounter is attempting to
    reproduce the image in an drop down list. Code is as follows:
    <select multiple name="getimage">
    <option selected value=""> </option>
    <cfoutput>
    <option value="M2"><img src="myimage.png"></option>
    </cfoutput>
    </select>

    Is CF up to the task or have I hit a deadend?

    Thanks in advance


    ummhcwd3 Guest

  2. Similar Questions and Discussions

    1. Images blocking the Drop down Menu
      Hi, I created a drop down menu. But blocked with images below. What can I do? Please help, Thanks! Mikeco
    2. Drop down menu in asp and dynamic images
      Hi I have an access database with a complete list of my clients. Firstly, how do I set the database to link to an image for each client? I do...
    3. Drag-n-drop images with ColdFusion/Flash
      I'm trying to figure out if something is possible. I have a database of people. All of these people have a bunch of images specific to them that...
    4. images with drop shadows on mixed background colours
      Hello there Does anyone know how I can create an image with a drop shadow that will be layered over the top of a background of different colours? ...
    5. Display images name thrue drop down box
      Hi, I have a folder include images and i want to disply the names of these images in drop down box and when i change the name the image also...
  3. #2

    Default Re: Images in a drop down

    I think this is really a limitation of the HTML standard, not CF. I don't
    think that you can embedd images in any standard select list. You will
    probably have to build you own dropdown object using DHTML or something.

    Bryan


    blewis 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