Problems with flash form cfselect

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Problems with flash form cfselect

    i have problems with this code, how can i load a data in a cfselect
    I'm using this code and nothings happend please help me

    <CFQUERY NAME="nclientes" DATASOURCE="myaccount" result="MyResult">
    select NombreCliente, Id_Cliente
    from dbo.ClientesMyAccount
    order by nombrecliente asc
    </CFQUERY>

    <cfform method="get" name="informacion" preservedata="true" preloader="no"
    format="flash" skin="haloorange" id="informacion">

    <cfselect name="select" width="150">
    </cfselect>

    </cfform>

    /b]

    gcmenotti Guest

  2. Similar Questions and Discussions

    1. Flash form load problems
      Hi, We have been banging our heads against the wall for some time with flash forms, but now this is a real puzzeler. We have just upgraded one...
    2. CFSelect and Selected Issue in a Flash Form
      I'm trying to use the CFSelect in a Flash form. The field has the possibility of multiple selections. We are currently trying this on our test...
    3. CFSELECT and Bidning in Flash Forms
      I'm not sure how to do exactly what you want, but the documentation does say that it is an array and you access the elements as...
    4. Problems mixing Flash & non-Flash form elements...
      I have a flash cfgrid wrapped inside a non-flash cfform tag along with other non-flash form elements. When the user selects a grid row, the flash...
    5. cfselect options dependent on choice from other cfselect
      I have 2 cfselects. 1st is category, 2nd is sub category. both are populated from database queries, but the options from the sub cat vary based...
  3. #2

    Default Re: Problems with flash form cfselect

    Maybe something like this?

    <CFQUERY NAME="nclientes" DATASOURCE="myaccount" result="MyResult">
    select NombreCliente, Id_Cliente
    from dbo.ClientesMyAccount
    order by nombrecliente asc
    </CFQUERY>

    <cfform method="get" name="informacion" preservedata="true" preloader="no"
    format="flash" skin="haloorange" id="informacion">

    <cfselect name="select_id" width="150"
    query="nclientes"
    display="ID Client"
    value="Id_Cliente">
    <option value = "" selected> any
    </cfselect>

    <cfselect name="select_name" width="150"
    query="nclientes"
    display="Nombre Cliente"
    value="NombreCliente">
    <option value = "" selected> any
    </cfselect>

    </cfform>

    Phil

    paross1 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