Cfgrid question
I am using a cfgrid that provides a starting point for editing records for my users. In a nutshell, the grid shows some record info and when the user clicks the record it takes them to a page so that edits can be made. All is well with that. I am needing to add a column to the grid to put some miscellanious/static items in with their own links. How would I go about doing this? As it seems, if I could just get the items to display, it still would not work because I am using the href options and it looks like it will override anything else. The href key only needs to affect the first seven columns and have no affect on the 'utilname' column, I will have its own static links in that. What can I do to make this work? TIA
<cfgrid name="requestgrid" query="getOriginalreq" format="html" autowidth="yes" selectonload="false" striperows="yes" gridlines="no" href="editreq.cfm" hrefkey="bcast_id" >
<cfgridcolumn name="bcast_id" header="Broadcast ID" display="no" >
<cfgridcolumn name="affiliatetype_id" header="Affiliate Type ID" display="no">
<cfgridcolumn name="affiliate_id" header="Affiliate ID" display="no">
<cfgridcolumn name="affiliatename" header="Affiliate Name" >
<cfgridcolumn name="subject" header="Subject" >
<cfgridcolumn name="editcount" header="No. Edits">
<cfgridcolumn name="reqtimestamp" header="Submit Date/Time" >
<cfgridcolumn name="utilname" header="Admin Functions" display="yes" >***This is the "standalone" column I am needing****
</cfgrid>
