macromedia.coldfusion.flash_integration
[Top] [All Lists]

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

Subject: Internet Explorer doesn't handle Flash Form on a single page
From: "InfoCon_Brian" <webforumsuser@xxxxxxxxxxxxxx>
Date: Fri, 27 Jun 2008 20:45:15 +0000 (UTC)
Newsgroups: macromedia.coldfusion.flash_integration

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>


<Prev in Thread] Current Thread [Next in Thread>