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>
Daverms - 30 Jun 2008 11:10 GMT
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
InfoCon_Brian - 30 Jun 2008 16:57 GMT
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.
Daverms - 01 Jul 2008 06:05 GMT
Hi,
Try adding,
style="margin-top:0; margin-bottom:0"
to your <cfformitem type="html"> tag and have a try again...
InfoCon_Brian - 01 Jul 2008 18:17 GMT
Ok, that did it.
Is there any reason as to why there is such a large "gap" between controls?
Thanks