Selection change query

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

  1. #1

    Default Selection change query

    Hi,
    I have problems that passing a JavaScript variable back to CF in a JavaScript
    item change event. For example, a user selects a state in one dropdown list,
    all the cities in the state should appear in another dropdown list.

    Try One method:
    <cfset STvar = ''CA'> -- Works if is set to constant value
    <cfset STvar = ''{stselect.text}'> -- Not Work if try to read a field
    <cfquery name="city" datasource="xxx".
    SELECT CITY FROM WEB."CITY" WHERE (STCODE = '#STvar#' )
    </cfquery>

    Try method 2:
    <cfset STsel = 'AL' > Works if is set to constant
    <cfset STsel = "{stselect.selectedItem.data}" > No Work - - after the
    <cfquery>, it returns me the correct SQL syntax, but not the result of the
    query.
    <cfset strSQL= "SELECT City FROM WEB.""STATE"" WHERE (STCODE = '" &
    variables.STsel & "' )">
    <cfquery name="city" datasource="xxx">
    #Evaluate('strSQL')#
    </cfquery>

    In the last method, how can I get the query result of the #Evaluate('strSQL')#
    if it returns the correct SQL statement. How can I read a selection text
    field into a CfSet varialbe before I click the POST Submit button.

    Thanks,
    James:confused;

    James168 Guest

  2. Similar Questions and Discussions

    1. Custom Dag&Drop in Tree + selection change
      Hello. I display a tree from which only some items must be draggable, so I couldn't use the default D&D behaviour and had to reproduce it all by...
    2. How to change boot selection
      I just installed ubuntu on a 40 gb partition on my windows C: drive so I can boot windows XP or several variations of ubuntu. Is there a way to...
    3. display query in selection
      I want to create a drop down, or selection list with a query from a db. Can anyone give a hint or explain how to do this? I tried cfselect but can't...
    4. CGI popup_menu does not change default selection
      Hi, According to the doc, -default argument to popup_menu sets the default selection. It does not seem to work for me. I carefully examined the...
    5. change selection color in cxtra stringgrid
      hi to all, how can i change the selection color (blue==>gray) in the cxtra stringGrid? tnx
  3. #2

    Default Re: Selection change query

    James,

    I didnt understand your code, but try this thing

    have this in your cfm file

    <cfif isDefined(form.statename)>
    <cfquery name="qGetcity" datasource="datasourcename">
    SELECT city from web
    where stcode = '#form.statename#'
    </cfif>

    <form>
    <select name="statename" onChange=form.submit()>
    <option value="AZ">Arizona</option>
    adonis1976 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