-
1. Re: Getting cfgrid (flash) to submit a row
BKBK Jan 14, 2014 1:28 AM (in response to cekweb01)It works for me! I reproduced your scenario as follows.
testForm.cfm
<!--- The table animals has 2 columns (id, common_name) and 3 rows --->
<cfquery name="session.allDefects" datasource="cfmx_db">
select *
from animals
</cfquery>
<cfform name="logForm">
<cfgrid name="propOppGrid" height="500" selectmode="row" autowidth="true" format="flash" query = "session.allDefects" onchange="getUrl('cqStatus_s1.cfm?CFGRIDKEY='+propOppGrid.selectedItem.id, '_blank');" />
</cfform>
cqStatus_s1.cfm
<cfdump var="#url#">
Query string: <cfdump var="#CGI.QUERY_STRING#">
The grid displays as expected. When I click on a row, the page cqStatus_s1.cfm pops up, displaying the id corresponding to the row. You might like to know that I am on ColdFusion 10.0.13.287689.

