I AM A CF BEGINNER, SO PLEASE BE VERY DETAILED IN YOUR EXPLANATION

I am trying to generate a cfgrid based on cfform input on the same page(WOULD 
IT BE EASIER, OR BETTER TO USE HTML Form). I tried using the bind attribute on 
the cfinput tags to send to the cfgrid, but no success. I want to dynamically 
display inputted data on the same page before I write to the database. I could 
not find any examples searching the forums.  Here is what I am trying to do:

<cfform>
    <cfinput name="input1" type="text" bind="{gridOutput.firstInput}">
    <cfinput name="input2" type="text" bind="{gridOutput.secondInput}">
    <cfinput name="submit" type="submit" value="submit">

    <cfgrid name="gridOutput" format="html">
        <cfgridcolumn name="firstInput">
        <cfgridcolumn name="secondInput">
    </cfgrid>

</cfform> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-newbie/message.cfm/messageid:5329
Subscription: http://www.houseoffusion.com/groups/cf-newbie/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-newbie/unsubscribe.cfm

Reply via email to