Skip to main content
Inspiring
April 17, 2007
Answered

cfform/cfgrid form submit error

  • April 17, 2007
  • 1 reply
  • 1116 views
I have a simple grid:

<cfgrid name="testGrid" format="flash" query="getHistory">
<cfgridcolumn name="idno" header="Employee ID">
</cfgrid>

The grid is populated just fine. When I submit the form instead of seeing the form variables I am getting the following error:

The submitted cfgrid form field is corrupt (name: __CFGRID__NEWFORM__TESTGRID value: __CFGRID__COLUMN__CFGRIDROWINDEX __CFGRID__DATA__1__CFGRID__COLUMN__IDNO__CFGRID__DATA__3000080)

I've changed columns in the query and no difference. The error still occurs.
Any ideas on where this error comes from?
We are using CFMX 7.02 on a Windows 2000 Server. Query is coming from Oracle 8i.
thanks.

Mark
This topic has been closed for replies.
Correct answer Mark_Forsberg
I found the problem. I was calling a custom tag in application.cfm. This is a CF5 app being upgraded.

<cf_inputFilter scopes="form,url" chars="%&;=" tags="script,object">

Apparently this breaks the posting action of a Flash Form. I removed the code and now life is good again.

Mark

1 reply

Mark_ForsbergAuthorCorrect answer
Inspiring
April 18, 2007
I found the problem. I was calling a custom tag in application.cfm. This is a CF5 app being upgraded.

<cf_inputFilter scopes="form,url" chars="%&;=" tags="script,object">

Apparently this breaks the posting action of a Flash Form. I removed the code and now life is good again.

Mark