CFGRID, updating records, reselecting records not refreshing and showing updates
I have a cfgrid that has minimal information - an id, type, title, status and status_date.
<cfgrid name="allopengrid" align="left" query="all_open" insert="No" delete="No" sort="Yes"
font="Arial" fontsize="10" bold="No" italic="No" appendkey="Yes" highlighthref="Yes"
griddataalign="LEFT" gridlines="Yes" rowheaders="No" colheaders="Yes" colheaderalign="Center"
colheaderfont="Arial" selectColor="##778899" colheaderitalic="No" colheaderbold="Yes"
selectmode="Row" picturebar="Yes" height="350" width="900">
<cfgridcolumn name="request_id" header="Log ID" width="100" display="Yes" dataalign="Center" fontsize="15" href="index.cfm?fuseaction=SelectOpenRequest" select="Yes">
<cfgridcolumn name="request_type" header="Type" width="100" display="Yes" dataalign="Center" fontsize="15" select="No">
<cfgridcolumn name="request_title" header="Title" width="450" display="Yes" dataalign="LEFT" fontsize="15" select="No">
<cfgridcolumn name="Status" header="Status" width="120" fontsize="15" select="No">
<cfgridcolumn name="commit_date" header="Commit Date" width="130" fontsize="15" select="No">
</cfgrid>
The user can select a record by id (cfset Session.RequestId="#ListGetAt(url.cfgridkey,1)#") and can update the rest of the record. When the record has been updated and saved, the user is then returned back to the cfgrid. If the status or status_date have been changed, the grid reflects the updates. The problem occurs when the user then re-selects the same record by id for any other updated field. The update form appears as though no updates have occurred to the record (but if you click on the internet 'refresh button', the record with refresh').
Any ideas on how to render an updated query set for the detail record? I am running CF 9.0.1 on Windows 2003 Server using Access (I know, I know - I'm still developing and will convert to MS SQL Server for a DB when I go live).
Thanks in advance for any suggestions.
Libby H.
