Hi Guys-

I'm trying to use the DataGrid for my log viewer, but i need to link  
the summary field to a details page.  When I use the code below, it  
appends all sorts of garbage onto the URL.  What am I doing wrong?


<cfform>
    <cfgrid name="log"
          format="html"
          pagesize="20"
          striperows="yes"
          delete="yes"
          bind="cfc:common.cfcs.log.getlog({cfgridpage},
                               {cfgridpagesize},
                               {cfgridsortcolumn},
                               {cfgridsortdirection})"
        >

       <cfgridcolumn name="datecreated" header="Date" width="100" />
       <cfgridcolumn name="type" header="Type" width="100"/>
       <cfgridcolumn name="category" header="Category" width="100"/>
       <cfgridcolumn name="summary" header="Summary"  
width="200"href="details.cfm" hrefkey="id"/>
       <cfgridcolumn name="details" header="Details" width="400"/>
    </cfgrid>
</cfform>

Thanks

Phil


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291153
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to