Ask a Question related to Coldfusion Database Access, Design and Development.
-
gcmenotti #1
Problems with flash form cfselect
i have problems with this code, how can i load a data in a cfselect
I'm using this code and nothings happend please help me
<CFQUERY NAME="nclientes" DATASOURCE="myaccount" result="MyResult">
select NombreCliente, Id_Cliente
from dbo.ClientesMyAccount
order by nombrecliente asc
</CFQUERY>
<cfform method="get" name="informacion" preservedata="true" preloader="no"
format="flash" skin="haloorange" id="informacion">
<cfselect name="select" width="150">
</cfselect>
</cfform>
/b]
gcmenotti Guest
-
Flash form load problems
Hi, We have been banging our heads against the wall for some time with flash forms, but now this is a real puzzeler. We have just upgraded one... -
CFSelect and Selected Issue in a Flash Form
I'm trying to use the CFSelect in a Flash form. The field has the possibility of multiple selections. We are currently trying this on our test... -
CFSELECT and Bidning in Flash Forms
I'm not sure how to do exactly what you want, but the documentation does say that it is an array and you access the elements as... -
Problems mixing Flash & non-Flash form elements...
I have a flash cfgrid wrapped inside a non-flash cfform tag along with other non-flash form elements. When the user selects a grid row, the flash... -
cfselect options dependent on choice from other cfselect
I have 2 cfselects. 1st is category, 2nd is sub category. both are populated from database queries, but the options from the sub cat vary based... -
paross1 #2
Re: Problems with flash form cfselect
Maybe something like this?
<CFQUERY NAME="nclientes" DATASOURCE="myaccount" result="MyResult">
select NombreCliente, Id_Cliente
from dbo.ClientesMyAccount
order by nombrecliente asc
</CFQUERY>
<cfform method="get" name="informacion" preservedata="true" preloader="no"
format="flash" skin="haloorange" id="informacion">
<cfselect name="select_id" width="150"
query="nclientes"
display="ID Client"
value="Id_Cliente">
<option value = "" selected> any
</cfselect>
<cfselect name="select_name" width="150"
query="nclientes"
display="Nombre Cliente"
value="NombreCliente">
<option value = "" selected> any
</cfselect>
</cfform>
Phil
paross1 Guest



Reply With Quote

