Skip to main content
Participant
August 16, 2008
Question

Populate Flash Based Form from a cfgrid.

  • August 16, 2008
  • 1 reply
  • 654 views
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!
This topic has been closed for replies.

1 reply

Inspiring
August 19, 2008
Just bind the grid column to the input field

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

Ken