Skip to main content
Known Participant
June 27, 2008
Question

Internet Explorer doesn't handle Flash Form on a single page

  • June 27, 2008
  • 2 replies
  • 1021 views
On FireFox 2.0.0.12 (Linux), the attach code displays two accordions.
On Internet Explorer 7 (Windows XP), only one accordion is displayed.

First, How do I determine if this Internet Explorer or a Flash error?
Second, Is there a fix?

<!--- Code --->
<!---
Name: Sample.cfm
--->

<cffunction access="private" name="WriteBookFlashSample" returntype="void">
<cfargument name="ProcessingName" required="true" type="String" >
<cfargument name="Catalog" required="true" type="String" >

<cfoutput>
<!--- Traverse through all of the Books in each processing queue for the given processing type --->
<div style="background-color:##BDDFff">#ProcessingName# - 1</div>
<cfform format="flash" method="POST" skin="haloBlue" >
<cfformgroup type="accordion">

<cfformgroup type="page" label="#Catalog# - 'title'">
<cfformitem type="html">
Catalog Number: #Catalog#<br />
Title: title<br />
Queue: #ProcessingName#<br />
</cfformitem>
</cfformgroup>
</cfformgroup>
</cfform>
</cfoutput>
</cffunction>

<html>
<head>
<title >Sample</title>
</head>
<cfoutput>
<body >
<cfform id="Main" name="Main" action="Sample.cfm" method="POST">
<cfinvoke
method="WriteBookFlashSample"
ProcessingName="First"
Catalog="555-55555-5555">
<cfinvoke
method="WriteBookFlashSample"
ProcessingName="Second"
Catalog="777-7777-7777">
</cfform>
</body>
</cfoutput>
</html>
This topic has been closed for replies.

2 replies

Inspiring
July 1, 2008
Hi,

Try adding,

style="margin-top:0; margin-bottom:0"

to your <cfformitem type="html"> tag and have a try again...




Known Participant
July 1, 2008
Ok, that did it.

Is there any reason as to why there is such a large "gap" between controls?

Thanks
Inspiring
June 30, 2008
Hi,

Which version of CF you are using there?.. If this is because of any recent migration (like from MX7 to 8) then try replacing the "Scripts" directory from CF8 with the one you have with MX7.

HTH
Known Participant
June 30, 2008
ColdFusion version 8 Developer's Edition on Fedora Linux 32-bit.

This is not an upgrade from any previous version to version 8.
Firefox displays both accordions perferctly.