cfUniForm Quick Tip: Struct or String

Posted on February 27, 2010 at 6:32 PM in ColdFusion, Uni-Form Tag Library

One of the improvements in the latest cfUniForm release is a change in behavior for the 'pluginSetup' attribute on the field tag. Even though this change does not break any old code, I still wanted to write a brief explanation of what the change is, why I made it, and how to make use of it.

A Quick Review

NOTE: If you are already familiar with the 'pluginSetup' attribute and know what it is used for, feel free to skip this section. :-)

The 'pluginSetup' attribute is used to pass configuration parameters to cfUniForm, which, in turn, passes those parameters on to the appropriate plugin. So, for example, let's say you have a date field in your form, and you want to set the range of years for that particular field, you would use the 'pluginSetup' attribute.

  1. <uform:field label="Start Date"
  2. name="startDate"
  3. isRequired="true"
  4. pluginSetup="#startDateSetupParams#"
  5. type="date" />

How It Changed

In previous releases, the 'pluginSetup' attribute required a string value be passed to it. Technically, in order to avoid a JavaScript error, it required a JSON string. So, using our example above, to provide params for the date range, our code would look something like this:

  1. <cfset startDateSetupParams = "{yearRange : '2010:2012'}" />
  2. <uform:field label="Start Date"
  3. name="startDate"
  4. isRequired="true"
  5. pluginSetup="#startDateSetupParams#"
  6. type="date" />

All we've done here is provide the JSON equivalent to a struct, ultimately telling the date picker plugin to use a year range of 2010-2012. If you'd prefer to not deal with JSON, and just use a regular ol' ColdFusion struct, well, now you can.

  1. <cfscript>
  2. startDateSetupParams = structNew();
  3. startDateSetupParams['yearRange'] = "'2010:2012'";
  4. </cfscript>
  5. <uform:field label="Start Date"
  6. name="startDate"
  7. isRequired="true"
  8. pluginSetup="#startDateSetupParams#"
  9. type="date" />

cfUniForm will automatically convert your struct to JSON and pass it along to the plugin.

Two important things I want to point out about that last code sample:

  1. I used array notation to declare the 'yearRange' key. Why? Because CF will UPPERCASE your key names if you don't. Why does that matter? Unlike CF, JavaScript is cAsE-sEnSiTiVe. So, 'YEARRANGE' is not the same as 'yearRange'. Therefore, if you provide 'YEARRANGE' to the plugin, nothing will happen.
  2. I used single quotes inside of double quotes when I declared the value of the key. Why? Some params in JavaScript require quotes. Some do not. In the case of 'yearRange', they are required. cfUniForm **will not** alter the values you specify. It is up to the developer to know when to use quotes and when not to. As a general rule you will need quotes on any value other than all-numbers or true/false.

Why It Changed

"Meh, that JSON ain't so bad," you say.

And I agree with you. On that simple little example with one key, it is pretty simple and straight-forward to just write a JSON string. But, what if you are setting lots of params? What if you are setting nested params? The more parameters you have to set, the more cumbersome the JSON string becomes. Miss (or misplace) a comma (,) or a curly brace ({ or }) and you're screwed.

The bottom line is, cfUniForm was created for the specific purpose of making great looking, consistently coded, cross-browser supported forms quick and easy. By enabling structs instead of JSON, they just got a little bit easier!

Comments
(Comment Moderation is enabled. Your comment will not appear until approved.)

On 3/5/10 at 9:48 PM, Byron Raines said:

This ended up pretty cool. I think it makes this very flexible and configurable.

byron
CodeBassRadio

Latest Articles

Eventually something really brilliant and witty will appear right here.

Calendar

May 2025
S M T W T F S
« Apr  
        1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31

Subscribe

Enter a valid email address.

The Obligatory Wish List