Flex 3 / Coldfusion 8 Problem with Numbers - Stack Overflow most recent 30 from stackoverflow.com 2010-03-14T13:21:32Z http://stackoverflow.com/feeds/question/1429164 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1429164/flex-3-coldfusion-8-problem-with-numbers 1 Flex 3 / Coldfusion 8 Problem with Numbers Chris Klepeis http://stackoverflow.com/users/71904 2009-09-15T19:27:06Z 2009-09-24T12:17:47Z <p>We recently migrated from coldfusion 7 to coldfusion 8. One of our reporting flex apps takes the returned results of a cfc query and adds up a column in that ArrayCollection. It worked on coldfusion 7, but now, in coldfusion 8, it sees that column as a string instead of a number, which is causing NaN errors on negative values. Its a numeric(12,2) NOT NULL in the database. It works in Flex when I cast it as a Number(var) but I'd hate to do that in all of our projects... has anyone ran into this problem?</p> http://stackoverflow.com/questions/1429164/flex-3-coldfusion-8-problem-with-numbers/1429255#1429255 3 Answer by Ryan Guill for Flex 3 / Coldfusion 8 Problem with Numbers Ryan Guill http://stackoverflow.com/users/7186 2009-09-15T19:43:05Z 2009-09-24T12:16:36Z <p>We actually just saw this yesterday too. CF 7 and CF 8 was the only difference. Doing this does not work:</p> <pre><code>var num:Number = e.result.MYNUMBERFIELD as Number; </code></pre> <p>but this does:</p> <pre><code>var num:Number = Number(e.result.MYNUMBERFIELD); </code></pre> <p>I don't think your looping and making a csv is related. I think it is a pure CF8 issue. I'll look in the bugbase and see if I notice anything like this. We haven't had time to research it further yet. I am also interested in what the difference is between those two cast methods.</p> <p><strong>Update 2009-09-24:</strong></p> <p>On at least one one machine here locally, the Cumulative Hot Fix 3 for ColdFusion 8.0.1 has fixed this issue. You can get this hotfix here: <a href="http://kb2.adobe.com/cps/511/cpsid%5F51180.html" rel="nofollow">http://kb2.adobe.com/cps/511/cpsid_51180.html</a>. That page also has instructions for installing the hotfix if necessary.</p> <p>Note for anyone else looking at this question: Adobe recommends that you apply CHF3 to ColdFusion 8.0.1 only if you are experiencing one or more of the issues that are listed on that page. If you are having the issue in this question of course that means you.</p>