Skip to main content
Ben Nadel at cf.Objective() 2014 (Bloomington, MN) with: Matt Vickers and Jonathan Dowdle and Joel Hill
Ben Nadel at cf.Objective() 2014 (Bloomington, MN) with: Matt Vickers ( @envex ) Jonathan Dowdle ( @jdowdle ) Joel Hill ( @Jiggidyuo )

ColdFusion Custom Tags Can Use Dashed Attributes

By on
Tags:

This morning, I was playing around with a ColdFusion custom tag that would encapsulate the rendering of a <select> menu. Part of this encapsulation involved propagating attributes from the ColdFusion custom tag onto the underlying Select element. As such, I randomly tried to pass a data- attribute into the ColdFusion custom tag; and, it worked! I didn't know that this was possible with ColdFusion custom tags. Furthermore, it appears to work in both Lucee CFML and Adobe ColdFusion!

To demonstrate this, I'm going to create a ColdFusion custom tag that does nothing but CFDump-out the attributes scope:

<cfdump var="#attributes#" />
<cfabort />

Then, I'm going to invoke this ColdFusion custom tag with a variety for attribute formats:

<cf_MyTag
	foo="bar"
	x:foo="bar"
	data-foo="bar">
</cf_MyTag>

This uses a "vanilla" attribute, a name-spaced attribute, and a dashed attribute. And, when we run this in both Lucee CFML and Adobe ColdFusion, we get the following output:

CFDump of the attributes scope showing attributes containing dashes in ColdFusion

This is great! If I'm going to create some ColdFusion custom tags that encapsulate the rendering of HTML tags, it's nice to know that more of the attributes that I might pass into an HTML tag can also be passed into a ColdFusion custom tag.

ASIDE: I tried using some of the more esoteric attribute syntax that Angular uses, such as (attr)="" and [attr]="", but both ColdFusion runtimes throw an error with these formats.

Want to use code from this post? Check out the license.

Reader Comments

15,688 Comments

One thing worth mentioning here is that if you're going to use the CFParam tag internally to the ColdFusion custom tag to define any defaults for attributes that contain dashes, the attributes still have to be valid variable names. Meaning, you cannot do this:

<cfparam name="attributes.data-foo" type="string" />

This will throw an error. Instead, you have to wrap them in bracket-notation:

<cfparam name="attributes[ 'data-foo' ]" type="string" />

This will work.

4 Comments

The data- attribute has been the saving grace of some of our newer json projects. To be able to send multiple values via one form control is priceless!

15,688 Comments

@Angel,

They are pretty cool! Hotwire, especially, uses them a lot in all of the DOM-bindings. I was also just listening to a podcast yesterday about using Cypress for testing, and they suggest using data- attributes as a way to target DOM elements in your UI tests. So flexible!

81 Comments

Passing strings that fail isvalid("variablename") work when passed as parameters to CFTags using EOL versions of ACF, like CF2016... but using the bracket notation with CFPARAM throws an error.

For better cross-platform support, the ternary operator works. This is what I've had to do in order to support "potentially problematic" variable names:

attributes['data-foo'] = (structkeyexists(attributes, "data-foo")
   && issimplevalue(attributes['data-foo'])) ? attributes['data-foo'] : ""
;
15,688 Comments

@James,

Interesting. I wonder if that is something specific to some magic going on in a Custom Tag context. Because, I'm pretty sure I've used the CFParam tag for ages to param URL-scoped names that have dashes in them:

<cfparam name="url.my-thing" />

... kind of stuff. And, I don't remember having issues. But, I might very well be misremembering.

Post A Comment — I'd Love To Hear From You!

Post a Comment

I believe in love. I believe in compassion. I believe in human rights. I believe that we can afford to give more of these gifts to the world around us because it costs us nothing to be decent and kind and understanding. And, I want you to know that when you land on this site, you are accepted for who you are, no matter how you identify, what truths you live, or whatever kind of goofy shit makes you feel alive! Rock on with your bad self!
Ben Nadel