cfselect options missing in IE

Ask a Question related to Coldfusion Flash Integration, Design and Development.

  1. #1

    Default cfselect options missing in IE

    As of recently, all flash form cfselect boxes are not returning any values. I
    am able to dump the query for query driven cfselect boxes and there are
    numerous rows. I also have hard-coded cfselect boxes that are not returning any
    values. Everything displays fine in Safari and Firefox, but Opera and IE are
    not displaying the options. Please help me out here, I have few hairs left as
    I'm pulling them all out...Here is the syntax:

    <cfform action="#request.self#?fa=listBoatOptions"
    method="post"
    format="flash"
    height="200"
    width="350"
    skin="haloblue"
    preloader="true"
    wmode="transparent"
    style="backgroundAlpha: 0;">

    <cfselect name="boatproduct_id" label="Boat Type:" size="1">
    <CFLOOP query="getBoat">
    <option value="#getBoat.boat_id#,#getBoat.product_id#">
    #getBoat.boat_name#
    </option>
    </CFLOOP>
    </cfselect>

    </cfform>

    ##########################
    Here is another example:

    <cfform action="#request.self#?fa=mailDealer"
    format="flash"
    height="325"
    width="350"
    method="post"
    name="contactform"
    skin="haloblue"
    preloader="false"
    wmode="transparent"
    style="backgroundAlpha: 0;">
    <cfformitem type="html">
    SEND MESSAGE OR COMMENT
    </cfformitem>
    <cfformgroup type="vertical">
    <cfformgroup type="tile">
    <CFSELECT NAME="target_email" SIZE="1" label="Send To:">
    <OPTION VALUE="northamerican.sales@test.com">North American Sales</OPTION>
    <OPTION VALUE="international.sales@test.com">International Sales</OPTION>
    <OPTION VALUE="human.resources@test.com">Human Resources</OPTION>
    <OPTION VALUE="northamerican.sales@test.com">Other</OPTION>
    </CFSELECT>
    </cfformgroup>

    <cfif ParameterExists(session.email) AND session.email NEQ "">
    <cfinput name="email" value="#session.email#" SIZE="20" label="Your E-mail"
    validate="email">
    <cfelse>
    <cfinput name="email" label="Your E-mail">
    </cfif>
    </cfformgroup>
    <cfformgroup type="panel" label="Please Type Your Message:">
    <cftextarea name="emailMsg" cols="30" rows="7"
    class="input_textbox_10"></cftextarea>
    </cfformgroup>
    <cfinput type="submit" name="submitbutton" value="Send Question/Comment"
    class="input_button">

    </cfform>

    shaun_o Guest

  2. Similar Questions and Discussions

    1. Acrobat PDF 8 printer missing pdf options
      I've been playing with this for a couple of months now and haven't got any closer to a solution. It is not application specific. The problem can be...
    2. Adobe PDF Printer Options missing (OS X 10.5.4 & Acrobat 8.1.2)
      Hello, I recently upgraded to 10.5.4 and my PDF options when printing to a PDF via Adobe PDF are no longer available (ie. selecting the PDF creation...
    3. Acrobat 7 Pro: missing PDF Options menu in all applications
      This one has got me stumped. I was at a customers today who was having a problem with Acrobat not appearing i nthe print menu. I duly reinstalled the...
    4. cfselect options dependent on choice from other cfselect
      I have 2 cfselects. 1st is category, 2nd is sub category. both are populated from database queries, but the options from the sub cat vary based...
    5. Resizing (tabs/boxes) options missing in Illustrator 10 (Mac)
      My re sizing tabs (boxes) are not showing up in two different versions of Illustrator 9.2 and 10.0.3 on two different Macs. I have re installed the...
  3. #2

    Default Re: cfselect options missing in IE

    I would suggest that the first example does not work as your using cfloop with no cfoutput.

    The second example works as posted on my system (did remove the form action)

    Ken
    The ScareCrow Guest

  4. #3

    Default Re: cfselect options missing in IE

    I have seen before where having a url parameter in your form action causes
    problems with form method = post submits.
    The first response to your thread also indicates this may be the problem (they
    removed the form action).
    Try placing your url parameter as a hidden parameter in your form instead, and
    make sure the form action has no parameters in the url. That might do it.

    gyannuzzi Guest

  5. #4

    Default Re: cfselect options missing in IE

    Thanks for all of your help. I seemed to have resolved the issue. I was using
    the ieupdate.js script which sets the outerHTML of an object tag through
    JAVASCRIPT to de-Activate the IE ActiveX control. It seems that an error is
    thrown when the script attempts to do the same for a flash form. I have since
    set an if statement in the javascript that if the object id contains the word
    form to skip deactivating the activeX control.

    This allows the script to function. The catch is that I cannot include the
    word form in any embedded objects other than flash forms. I hope that this van
    be of use to others. Thanks to all of those that replied!

    -Shaun

    shaun_o 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