I'm trying to add a link to a CFGRIDCOLUMN and I need some help, I setup the link but I need to send the user id from the DB query to the link field how can I do that.
here is my code.
<cfform method="post">
<cfgrid name="gridUsers" query="qryGetUsers" format="html" stripeRows="true">
<cfgridcolumn name="id" display="yes" href="payment.cfm?id="> ---> NEED TO ADD ID
<cfgridcolumn name="fname" display="yes" header="First Name">
<cfgridcolumn name="lname" display="yes" header="Last Name">
<cfgridcolumn name="enddate" display="yes" header="Expiration Date">
</cfgrid>
</cfform>
|