Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
grice #1
Cfgrid to display search results
I'm using Cfform format = flash. I have 2 search fields, and a button. When a
user enters their search query, and hit submit, I want to populate my cfgrid
with the results. Can anyone give me some insight on how to pull this off?
Thanks -GR
grice Guest
-
Display search results from Flash Form to CFGrid
Yet another CF flash form question: I'm not sure if this is possible, but, I would like to display search results using flash forms and display... -
Sending search results to a results page..with asp
Please help.. very :confused; Ive setup 4 dynamic drop down boxes which populate themselves from my database, this all works fine..The last box... -
Query results don't display properly in results table.IGNORE PREVIOUS
:disgust; I need to display the results of a query. The query runs properly. My problem is having specific results display in specific locations in... -
Query results don't display properly in results table.
:disgust; I need to display the results of a query. The query runs properly. My problem is having specific results display in specific locations in... -
cfgrid-flash- search
I would like to have 3 possible search fields that on submit it will search the database and display the results in the cfgrid in flash format. Is... -
dbenitez #2
Re: Cfgrid to display search results
I did this piece of code really quick, i hope it can help you.
-Diego Benitez
<cfform action="#cgi.SCRIPT_NAME#" name="search" method="post">
<cfformgroup type="vertical">
<cfformgroup type="horizontal">
<cfinput name="fiel1" label="Field1: "><cfinput name="field2" label="Field2: ">
</cfformgroup>
<cfinput name="Search" type="submit" value="Search">
<cfif isdefined('form.search')>
<cfquery name="LookUp" datasource="datasource">
SELECT * FROM table WHERE column1 LIKE '%#form.field1#%' and column2 LIKE
'%#form.field2#%'
</cfquery>
<cfgrid query="LookUp" name="SrchGrid"></cfgrid>
</cfif>
</cfformgroup>
</cfform>
dbenitez Guest
-
grice #3
Re: Cfgrid to display search results
that was what I was lookin for, thanks a ton for the help.
grice Guest



Reply With Quote

