Jan 27
Tony Garcia has posted an excellent tutorial on how to use
Brian Kotek's Form Utilities within a ColdBox Application with easy and elegance.
Thanks for this great tutorial Tony!!
http://www.objectivebias.com/blog/entry/formutilities-plugin-for-coldbox
Jan 26
If you have not registered to go to the
CBOX-101 Core ColdBox Training Seminar, what are you waiting for? The early bird ends in 2 weeks and you can now save over $300!! Come learn more about ColdBox in Sunny California in a seminar with over 16+ hours of intense training and networking.
So go now and register!!
The
FAQ document has been updated with more Hotel Information (
Hyatt Place Ontario Mills). We have secured a discounted rate of $89 for the weekend stay of March 13-15. So when you call to make your reservations, please refer to the ColdBox Platform Training Group by Ortus Solutions, so you can get the discounted rate of $89/night.
As an advice, ALWAYS, check the
internet rates first. As they sometimes tend to give even bigger discounts via their online registration system.
Jan 19
ColdBox Platform Official Training Seminars Announces
Early-Bird Special Pricing for March 14-15 2008
CBOX 101- Core ColdBox Seminar in Ontario, California. Welcome to where it's sunny and warm!
ColdBox Platform Official Training Seminars today announces an Early-Bird Special discount registration price of just
$895 for our March 14-15th, 2009 ColdBox Platform 101 seminar to be held in Ontario, California. Registrants can take advantage of this early bird savings over the full seminar price of $1,100 by completing their registration before 5PM (Pacific Daylight Time) on February 8th, 2009. (Discounts available for groups of 5 or more)
The
ColdBox Platform 101 Seminar is a 2-Day Introduction to ColdBox and ColdBox Platform Application Development providing 16+ hours of intense, hands-on training with ColdBox author Luis Majano in an intimate setting with only 15-20 seats available. The skills learned in this seminar can be immediately applied to a developer’s daily tasks.
For more information on ColdBox Platform Training or to register, please visit the
ColdBox Training web site.
Jan 16
The ColdBox configuration file has a place for you as the developer to create as many custom setting variables as you like. You can create simple or complex settings via JSON notation. This approach is great, but sometimes, you want for these variables to be, well, more dynamic. The following UDF helps you achieve this, by storing your name-value pairs of settings in a persisten storage such as a database. Then just basically call this UDF from your application start handler and voila!! You are ready to roll with settings that can be managed from a control panel of your application or any other dynamic approach. You can even get creative and create your own reloading techniques for only application settings.
<cffunction name="loadOptions" access="private" returntype="void" hint="" output="false" >
<cfset var qOptions = 0>
<cfset var jsonRegex = "^(\{|\[)(.)*(\}|\])$">
<cfset var oUtilities = getPlugin("Utilities")>
<cfset var thisValue = "">
<cfset var oJSON = getPlugin("json")>
<cfset qOptions = getSiteManager().getOptions()>
<cfloop query="qOptions">
<cfset thisValue = oUtilities.placeHolderReplacer(trim(qOptions.value),getSettingStructure())>
<cfif reFindNocase(jsonRegex,thisValue)>
<cfset setSetting(qOptions.name, oJSON.decode(replace(thisValue,"'","""","all")) )>
<cfelse>
<cfset setSetting(qOptions.name, thisValue)>
</cfif>
</cfloop>
</cffunction>
There you go!!