Ask a Question related to Macromedia ColdFusion, Design and Development.
-
slamb0513 #1
Drill-Down Query on one page
I want to build a drill-down query on one page and then submit the form to
another page once the drill-down is complete. Here are the specifics.
I have a form that askes users how many vehicles they have in their household.
Based on this answer, they would then select the Year, Make, Model and Option
for those vehicles. Currently, When they select the year, the form submits to
a second page that queries the database for makes made in that year. Theyn
they select the make and the form submits to a third page that queries the
database again for models made in that selected year and make.....and so on.
I would like to be able to have the user select the year, make, model and
option on one page and then have the form submit to its processing page once
that is all done.
Can anyone explain how this might be done without using any complex
Javascripting?
slamb0513 Guest
-
Question on drill-in navigation
Hi, I have a ViewStack in my main mxml. One of its child containers (a Search 'page') has a DataGrid. When I click a record in the DataGrid, I want... -
Drill down data
I am new in Coldfusion and I am totally stuck with this problem, if anyone has any advice or can point me in the right direction it will be greately... -
drill down via js
Hey, I am using a dg with a nested dg. It acts like a hierargrid. But the nested datagrid currently expands on the server side. I want to move... -
query a DB - pass the query to next page
I am running a querry on an access database and have set the number of records/page displayed at 20. if there are more than 20 records returned,... -
Need ASP/SQL data drill down help
OK, I have a database which has three main tables: 1. funding_source_info (unique ID# per source which has all the contact info, etc.) 2.... -
Iceborer #2
Re: Drill-Down Query on one page
I guess it depends on what you mean by "complex javascript." I have used this
method in the past.
[url]http://depressedpress.com/DepressedPress/Content/Development/JavaScript/Articles[/url]
/GIFAsPipe/Index.cfm
Iceborer Guest
-
dempster #3
Re: Drill-Down Query on one page
The primary way to make a page interactive without going back to the server is
through JavaScript. The server can pass information into JavaScript arrays, and
then your page can update form elements such as select boxes using event
handlers such as onchange.
Before you pursue this, you might want to ask if the functionality of your
form would be greatly improved by this strategy. JavaScript programming can be
complex and you may get bogged down with making it work. A clear, well-designed
multi-part form might be the best way to go unless you have server performance
problems. Perhaps you can combine some of the information so that year and
make, for example, are on the same page as are model and option.
Just a thought.
-Paul
dempster Guest
-
roblaw #4
Re: Drill-Down Query on one page
Slamb,
Search the coldfusion developers exchange for 'Parent Child Select'.
roblaw
roblaw Guest
-
Unregistered #5
Re: Drill-Down Query on one page
Use cfbind and CFC's
I have done the numerous times and it works greatUnregistered Guest



Reply With Quote

