Good Morning fellow CFers,

I am trying to implement a Flash Form for the first time. So far everything 
looks great, however, I can not get a drop-down select box to work. Initially I 
tried doing a dynamic cfselect which shows up but does not display any data. 
Then, to test the problem, I actually hardcoded a select which also shows up 
empty. I have researched the issue to find that many people have problems with 
this if their CFIDE is not mapped. However, ours is accessible and has the 
appropriate files included in it. Does anyone have any ideas on what else the 
problem might be? Thanks in advance! (SEE CODE BELOW)

Tara Breymaier

cfform action="action/profileEdited.cfm" format="flash" width="620" 
height="550" skin="halogreen" scriptsrc="/CFIDE/scripts/">

<cfinput type="hidden" name="EmpID" value="ID">

<cfformgroup type="tabnavigator">

<cfformgroup type="page" name="Basic" label="Basic">

<cfinput type="text" label="First Name:" name="fname" size="15" maxlength="20" 
required="yes">

<cfinput type="text" label="Last Name:" name="lname" size="15" maxlength="20" 
required="yes"> <cfinput type="text" label="Badge Number:" name="Badge" 
size="15" maxlength="15">

<cfinput type="text" label="Birthday (mm/dd/yyyy)" name="birthday" size="15" 
maxlength="15" required="yes">

<cftextarea name="bio" rows="4" cols="20" label="About Me:"> </cftextarea>

</cfformgroup>

<cfformgroup type="page" name="Contact" label="Contact">

<cfinput type="text" label="Email:" name="email" size="25" maxlength="20" 
required="yes">

<cfinput type="text" label="Office Phone:" name="wphone" size="15" 
maxlength="15" required="yes">

<cfinput type="text" label="DSN:" name="dsn" size="15" maxlength="15">

<cfinput type="text" label="Red Phone:" name="rphone" size="15" maxlength="20">

<cfinput type="text" label="Cell Phone:" name="cphone" size="15" maxlength="15">

<cfinput type="text" label="Unclassified Fax:" name="ufax" size="15" 
maxlength="15">

<cfinput type="text" label="Classified Fax:" name="cfax" size="15" 
maxlength="15">

<cfinput type="text" label="Cube:" name="cube" size="5" maxlength="5" 
required="yes">

</cfformgroup>

<cfformgroup type="page" name="Office" label="Office">

<cfselect name="location" label="Location" width="100" query="getLocations" 
value="locationID" display="location" queryposition="below"><option 
value="Bethesda">Bethesda</option></cfselect> 

<cfselect name="locations">

<option>Bethesda</option>

<option>Reston</option>

<option>St. Louis</option>

</cfselect>

<cfinput type="text" label="Supervisor:" name="sup" size="15" maxlength="15" 
required="yes">

<cfinput type="text" label="Org Code:" name="org" size="5" maxlength="5" 
required="yes">

<cfinput type="text" label="Title:" name="title" size="15" maxlength="15">

</cfformgroup> 

</cfformgroup>

<cfformgroup type="horizontal">

<cfinput type="Submit" value="Update" name="UpdateEmpBTN">

</cfformgroup>

</cfform>



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295429
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to