coldfusion flash integration:
This should be very simple, but it is giving me a lot of problems. I am
returning data from Oracle into a datagrid, then I am trying to use the BIND
attribute on the CFINPUT tag to display the data. The data will not display,
if I change the datasource to something else (MS Access), it works. Has anyone
seen any problems binding data from Oracle in a CFINPUT tag? Here is my code:
<cfform name="AFSContactInfo" format="flash" width="800" height="350">
<cfformgroup type="panel" label="Contacts">
<!--- grid with contact names --->
<cfgrid name="contactGrid" query="getAFSInfo" height="220"
rowheaders="false">
<cfgridcolumn name="obg_no" header="Obligor" />
<cfgridcolumn name="name" header="Name" />
<cfgridcolumn name="addr_3" header="Address" />
<cfgridcolumn name="city" header="City" />
<cfgridcolumn name="st" header="State" />
<cfgridcolumn name="zip" header="Zip" />
</cfgrid>
<cfformgroup type="horizontal">
<cfinput type="text" name="sel_name" bind="{contactGrid.selectedItem.name}"
label="Sel Name:" SIZE="20">
<cfinput type="submit" name="submitBtn" value="Submit"/>
</cfformgroup>
</cfformgroup>
</cfform>