new to CF7, and was wondering how would i output/alert the PK (primary key)
when looping through the results using CFGRID? easily done when output'n with
cfoutpout/cfloop, but i only get the first one returned when i try this code:

<cfform name="blogListForm" format="Flash" height="170" skin="halosilver">
<cfgrid name="BlogList" selectmode="single" query="getBlog"
colheaderbold="yes" onChange="alert('#getBlog.Blog_ID#')">
<cfgridcolumn name="Blog_ID" display="No" />
<cfgridcolumn name="Title" header="Blog Entry" />
<cfgridcolumn name="BlogType" header="Category" width="150" />
<cfgridcolumn name="CommentCount" header="Comments" width="80" />
</cfgrid>
</cfform>

any help or illumination is appreciated ;)

/foO