Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
slider6 #1
Trying to BIND data from Oracle
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>
slider6 Guest
-
ActionScript to bind XML data to components
How can I use ActionScript to bind XML data to a comboBox component instead of using the component inspector? (I have done the latter, successfully,... -
Use Bind Data as link within CFFORMITEM
I am having a problem displaying some bind data as a link within a <cfformitem> tag. The link works fine, however I want the data from the grid... -
Formatting Data in BIND
:D The BIND part of cfinput is great. Now I need to format the number calculated so I only see two decimal places. Tried our DecimalFormat... -
how to bind data to checkbox in datagrid
hi i have a datagrid and one colume is a bool if i use a normal asp:BoundColumn is shows as true or false and i want it to show as a checkbox but... -
Using Bind Variables with Cold Fusion and Oracle
<OakRogbak_erPine@yahoo.com> wrote in message news:13fdc9b4.0307020959.79a7c322@posting.google.com... well the sql_text column holds the actual... -
slider6 #2
Re: Trying to BIND data from Oracle
I figured it out. I trying to reference the Oracle column as
contactGrid.selectedItem.name
and it should have been
contactGrid.selectedItem.NAME
Oracle is case sensitive
slider6 Guest



Reply With Quote

