CFWINDOW and CFFORM don't like hidden form variables named "action"
I kept getting an error with a CFFORM that I was using within a CFWINDOW. The error was:
error: http: Error retrieving markup for element editWindow_body : Not Found
This error message would go away if I would use a regular HTML form tag. After a bit of searching I found the solution. I had a hidden variable in the form named "action". Such as:
<input type="hidden" name="action" value="editCompany">
It appears that the Javascript/Ajax libraries for coldFusion 8 have the form variable "action" as a reserved word, and this was conflicting with the normal operation of the page. I quickly changed the name of the hidden variable to "myAction" along with the code and everything works normally.
<input type="hidden" name="myAction" value="editCompany">


You would think that the Adobe people wouldn't use a word like this as a reserved word since it seems like a fairly common use by CF programmers