Questions tagged [coldfusion-2016]

ColdFusion is a server-side rapid application development platform, from Adobe. ColdFusion 2016 was released on February 15, 2016. ColdFusion was later updated to ColdFusion 2018.

New features in ColdFusion 2016:

  • PDF Enhancements
  • Updated functions including Query and Array processing functions
  • Language enhancements including safe navigation (?.)
  • Command Line Interface
  • Swagger document generation

See: https://helpx.adobe.com/coldfusion/2016/topics.html#dynamicpod_reference

353 questions
3
votes
1 answer

Last key in ordered struct

I am building an ordered struct stMbr = [:]; Lots and lots of fields get added. stMbr.Name = ""; stMbr.Address = ""; stMbr.City = ""; ... Eventually I hit the last field that is being added. After the ordered struct is built, I am going to need to…
James A Mohler
  • 11,060
  • 15
  • 46
  • 72
3
votes
2 answers

looping with for ( in ) on Javascript does not match ColdFusion

In ColdFusion, I can do this favorites = [{"broker_label":"spectra"}]; for (afav in favorites) { writedump(afav); } And I get each row in the array. If I try this in Javascript favorites =…
James A Mohler
  • 11,060
  • 15
  • 46
  • 72
3
votes
1 answer

Strings with newlines should not treated as numbers

I don't want strings with newlines treated as numbers. This should be considered a string notes = "3 "; The newline is preserved
|#notes#|
Number: #isNumeric(notes)#