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>
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>
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
Don't see what you're looking for? Try a search.
|