CFGRID and semicolon bug
4 Message(s) by 3 Author(s) originally posted in flash and cfml
| From: VirtualED |
Date: Monday, April 02, 2007
|
This problem was posted way back in 2005 but I haven't seen a
solution to it.
When querying from a
database a
record that contains a
semicolon and displaying
it on a CFGRID if you select that
row and try to submit or do anything with it
you'll get an
error (....submitted CFGRID form
field is corrupt ....). Here
is an example of the
code used to prove the
bug .
<CFSET myQuery = QueryNew("ticket_id,description")>
<CFSET temp = QueryAddRow(myQuery)>
<CFSET QuerySetCell(myQuery,"ticket_id","1")>
<CFSET QuerySetCell(myQuery,"description","a;")>
<CFSET temp = QueryAddRow(myQuery)>
<CFSET QuerySetCell(myQuery,"ticket_id","2")>
<CFSET QuerySetCell(myQuery,"description","a;b")>
<CFFORM NAME="test" ACTION="#cgi.SCRIPT_NAME#">
<CFGRID NAME="testGrid" QUERY="myQuery" SELECTMODE="ROW" FORM AT="FLASH">
</CFGRID>
<CFINPUT TYPE="submit" NAME="submit">
</CFFORM>
I have tried different things and different platforms and different versions of
JRE all give me the same result.
Has this problem been solved yet?
| From: tzimmerman |
Date: Tuesday, April 03, 2007
|
Bug 60478 was
open ed for this problem. It is going to be fixed in the next
release of Cold Fusion. I can not give you the release
date at this time.
Ted Zimmerman
| From: Whatisvalid |
Date: Tuesday, October 02, 2007
|
I'm looking at Cold Fusion MX 7.02 Cumulative Hot Fix 3 KB402465 and ID Number
60478 isn't listed as being fixed. There is also no mention of this bug in
TechNote b9c2d61c which is an update of CFFORM controls. When can we
expect a
fix and check on the status? I have over 100 pages using CFGrid, and 10-15
pages that fail to work due to semicolons.
| From: Whatisvalid |
Date: Tuesday, October 02, 2007
|
:disgust;
I tried to open a presales tech
support case for Cold Fusion 8 to see if this
issue was solved. Since I don't own 8 yet, I was told to go to this
forum and
wait for a response, or purchase Cold Fusion 8 AND a $499 tech support case to
have the issue answered. This is not a very nice way to treat loyal customers!
Next Message: changing dateField selectedDate
Blogs related to CFGRID and semicolon bug
cfgrid and semicolon bug
When querying from a database a record that contains a
semicolon and displaying it on a
cfgrid if you select that row and try to submit or do anything with it you will get an error (....submitted
cfgrid form field is corrupt ....).
...