Okay, so I'm undoubtably missing something incredibly stupid, but...

Decided to spend a few minutes playing around with the new Flash form
capabilities in MX7.  I have a simple select list, populated like so:
<cfquery name="GetLocations" datasource="#DSN#">
        SELECT DISTINCT Location
        FROM Cmn_Location
        WHERE Deleted = 0
        ORDER BY Location
</cfquery>

and an incredibly simple form, like so:
<cfform action="offerings_list.cfm" format="html" method="post">
        <cfselect name="SelectedLocation" size="5" required="yes"
message="Please select a location" multiple="no" query="GetLocations"
value="Location" display="Location" queryPosition="above"></cfselect> 
</cfform>

Which works just as you'd expect.  Tried just changing the 'format' to
Flash, & adding a height & width:

<cfform action="offerings_list.cfm" format="flash" method="post"
height="300" width="300" skin="haloblue">
        <cfselect name="SelectedLocation2" size="5" required="yes"
message="Please select a location" multiple="no" query="GetLocations"
value="Location" display="Location" queryPosition="above"></cfselect> 
</cfform>

And all I get is a Flash area with the outline of a box, with an
ever-spinning clock cursor while within the boundaries of it.

Tried putting a simple button inside the flash form:

<cfform action="offerings_list.cfm" format="flash" method="post"
height="300" width="300" skin="haloblue">
<cfinput type="Submit" name="submitit" value="Confirm" width="100">
        <cfselect name="SelectedLocation2" size="5" required="yes"
message="Please select a location" multiple="no" query="GetLocations"
value="Location" display="Location"></cfselect> 
</cfform>

And the button shows up, no problem - but still no list.

What totally obvious thing am I missing??

Thanks,
Dirk

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235593
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to