Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
shaun_o #1
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
-
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... -
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... -
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... -
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... -
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... -
The ScareCrow #2
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
-
gyannuzzi #3
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
-
shaun_o #4
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



Reply With Quote

