Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
Seth Buntin #1
Select box determines query...
I have two select boxes and i want the information from what is selected in those boxes to query the database and fill a third select box (all on the same page) Is this possible?
Seth Buntin Guest
-
help with a SELECT query
Hi all, I have tables with columns names containing dots and I'm trying to build up queries as in: select it.n.cuore.1.lemma from a027; But I... -
Query of Query to select a title first letter
The column "title" exists in a normal query. Need to select the first letter of the titles to build a list for a prev-next alphabetical search. ... -
select query help
Dear This is the sample data! Plase give me the solution. I tried my level best to solve this query but failed to do so. Thanks in advance... -
Select query
I would like to perform select on the following two tables, tblPoll PollID tblPollResults PollID AnswerID UserID -
Using < and > in a select query
I am trying to write a select query to recieve results between two date ranges i have got these lines in my cfquery tag (example): and... -
blewis #2
Re: Select box determines query...
Yes, it's possible, but not without refreshing the page, unless you use
something like Flash remoting. If you need to gather information before
running the query, then you need to send that info back to the server to
generate the list for the third select box.
Here is an example of a simple set of select lists that each depend on a
selection. Each time you select something, there is an onChange handler that
submits the form and refreshes the page.
[url]http://www.eddataonline.com/fitness/2004/data/data_selection.cfm[/url]
Bryan
P.S. -- If the datasets are very small, it is possible to preload everything
in javascript arrays and then access it without refreshing the page -- but this
can get ugly, and is terrible for larger sets of data.
blewis Guest



Reply With Quote

