all groups > coldfusion flash integration > july 2005 >
You're in the

coldfusion flash integration

group:

Flash Form not displaying



Flash Form not displaying Chaddasffgasdgd
7/26/2005 12:00:00 AM
coldfusion flash integration: I have a basic flash form that displays a grid of returned customers. When I
try to view it in Mozilla I just get a blank white page. When I try to load it
in IE, the page just keeps loading and loading and nothing gets displayed.

my code"
<cfform format="flash" preloader="true" skin="Haloblue">
<cfformgroup type="hbox">
<cfformgroup type="page" label="Customer Search Results" width="350">
<cfgrid name="CustomerList" query="request.Customers" rowheaders="no">
<cfgridcolumn name="FirstName" header="First Name" />
<cfgridcolumn name="LastName" header="Last Name" />
</cfgrid>
</cfformgroup>
</cfformgroup>
</cfform>
Re: Flash Form not displaying Chikowski
7/28/2005 2:32:11 PM
Try this:

<cfform format="flash" preloader="true" skin="Haloblue">
<cfformgroup type="page" label="Customer Search Results" width="350">
<cfformgroup type="hbox">
<cfgrid name="CustomerList" query="request.Customers" rowheaders="no">
<cfgridcolumn name="FirstName" header="First Name" />
<cfgridcolumn name="LastName" header="Last Name" />
</cfgrid>
</cfformgroup>
</cfformgroup>
</cfform>

Re: Flash Form not displaying Michael Brennan-White
8/16/2005 3:24:53 PM
Did you find an answer that worked. I get the same results you
describe when I run the simplest of all forms from my server:

<cfform name="testForm" action="action.cfm" format="flash"
skin="haloorange" width="150" height="100" preloader="true">
<cfinput type="text" name="firstName" size="30">
<cfinput type="text" name="lastName" size="30">
<cfinput type="submit" name="Submit" value="Submit">
</cfform>

When I run the same code locally the flash form displays. If I change
the format to xml and delete the skin attribute, it displays even from
the server.

I'm open to any ideas.

Michael
AddThis Social Bookmark Button