Populate Flash Based Form from a cfgrid.

Ask a Question related to Coldfusion Flash Integration, Design and Development.

  1. #1

    Default Populate Flash Based Form from a cfgrid.

    Hello,
    I have a flash based form in CFMX 8. It has a two cfinput fields (first name,
    last name), I also have a cfgrid which displays a list of users and what I want
    to do is select a name in the grid and have it populate the cfinput fields.

    Is this possible, if so does some one have an example, please.

    Thanks!

    IntoThinAir Guest

  2. Similar Questions and Discussions

    1. CF Flash Form and CFGRID
      Hello, I'm trying to create a page CFFORM flash page where the cfgrid will display results base on a start and end date. The user selects these...
    2. CFGrid in Flash Form
      I'm trying to display my data in a flash form in 2 rows, The first row to display the currenty month follow by the day 1-31. The second row is to...
    3. [CFMX 7] CFGRID form flash bug ?
      Ciao, problems with updating record containing characters punctuation. test: create table with name " content " with fields name...
    4. flash form cfgrid
      Hi, I'm using a flash form with a cfgrid. I can insert a grid by doing GridData.insertRow(mygrid); , but I want to insert specific data in that...
    5. Populate form values based on previous same form fields
      This message is cross posted in alt.comp.lang.php & comp.lang.javascript I have a form for a user to input an establishment's hours and what time...
  3. #2

    Default Re: Populate Flash Based Form from a cfgrid.

    Just bind the grid column to the input field

    <cfinput type="text" name="firstname" bind="{GRIDNAME.COLUMNNAME}">

    Ken
    The ScareCrow 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