Select box determines query...

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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. ...
    3. 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...
    4. Select query
      I would like to perform select on the following two tables, tblPoll PollID tblPollResults PollID AnswerID UserID
    5. 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...
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139