Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
InfoCon_Brian #1
Multiple cfformgroup Accordion don't display in IE7Multiple cfformgroup Accordion don't display in IE 7
Sorry for the double post, wasn't sure which category to post this question in.
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>
InfoCon_Brian Guest
-
cfformgroup question
Below is the snip that I'm using to get my Flash form. I would like a second column with items like address, city, state, zip, company, etc. I keep... -
CFFORMGROUP Accordion selectedIndex - Want NO panelsopen on load!?!
Using CFFORMGROUP type="Accordion" and defaults to first panel open. I've played with the selectedIndex="{number}" to open different panels, no... -
Multiple DB Columns display in <cfselect display>
*disclaimer* -- I'm a CF n00b. Hello all, -
CFFormGroup Tag
I was going to try yo use the <cfformgroup></cfformgroup> but does not exist. I have Coldfusion MX 7 and Dreamweaver MX 2004 and can not find this... -
List won't display in Accordion segment... PLEASE HELP!
I have an accordion on the stage (instance name myAccordion) that is populated from an object (which is created from an XML doc). After I create a...



Reply With Quote

