Blog

ColdBox Platform Utilities v2.1 Released

Luis Majano |  August 08, 2010
We have now released version 2.1 of the ColdBox Platform Utilities extension for ColdFusion Builder.  This version brings new application templates that are ColdBox 3.0.0 M6 compatible and ready.  We have also introduced a new application temp...
Read More

ColdFusion powered iPhone applications

Luis Majano |  August 04, 2010
Another video we have just added to the vimeo ColdBox Platform channel.  Here is our presentation at CFUnited2010 about building mobile applications such as iPhone or Android native applications by powering them with ColdFusion/ColdBox RESTful services.  Enjoy!
Read More

ColdBox Platform 3.0.0 video at CFUnited

Luis Majano |  August 04, 2010
We have started posting our videos in our new vimeo ColdBox Platform channel so you can enjoy lots of new videos coming.  Here is our presentation at CFUnited2010 about the ColdBox Platform 3.0.0
Read More

Combine/Merge ColdFusion arrays with Java Array addAll()

Curt Gratz |  July 21, 2010

Have you ever wanted a quick and easy way to combine arrays in ColdFusion.  I have done this a number of ways in the best, but came across this gem and thought I would share.

All ColdFusion arrays are of the Java vector type, we can use the underlying java.util.Vector class methods, specifically the addAll() method.

Keep in mind that this is not a "documented" use of arrays in ColdFusion, so at any version it may stop working.

Merging two arrays in ColdFusion with the java.util.vector.addAll()

ar1 = ["a","b","c"]; ar2 = ["d","e","f"]; ar1.addAll(ar2); writeDump(ar1);

 

Read More