Advanced ColdFusion Custom Tags With Ben Nadel (Video Presentation)

Posted August 22, 2009 at 5:58 PM by Ben Nadel

Tags: ColdFusion

The following video and slide show is my presentation: Advanced ColdFusion Custom Tags. While the slide show covers the entire breadth of ColdFusion custom tags, from the basics to the advanced, the video demonstrates only the advanced aspects covered in my CFUNITED version of the presentation. Custom tags are the unsung heroes of the ColdFusion world and I hope that in this presentation I can demonstrate the ways in which they can be used to create more natural, more elegant, and ultimately more powerful solutions to your everyday business problems.

In the presentation, I keep bringing up ColdFusion components because it has been my observation that in the community at large, it is believed that ColdFusion components are a replacement for the "outdated" usage of Custom Tags. What I want to get across to you is that these are not competing technologies in any way; and, in fact, ColdFusion components and custom tags can work together, synergistically, to create best-of-breed solutions.

Click here to download the presentation slides and the code demonstrations.


 
 
 

 
Advanced ColdFusion Custom Tags With Ben Nadel (Video Presentation)  
 
 
 

NOTE: I recorded the video at a very large dimension - my apologies for the scrolling.

On a personal note, this my first presentation given at a conference, so a big thanks to everyone who encouraged me and gave me excellent feedback (especially you Simon Free).



Reader Comments

3 Comments

Thanks Ben for posting your preso, I agree that alot of people don't appreciate how useful and relevant custom tags can still be in this crazy grande cfc with oo icing thanks world :P

The best example of advanced tag use in the wild I have seen would have to be Mango Blog with it's custom tag templating and event system. Complex and very cool stuff.

Later, Jo.


Aug 23, 2009 at 6:07 PM // reply »
10,640 Comments

@Joanna,

No problem. And thanks for the Mango Blog tip, I'll have to take a look at what their doing.


Aug 24, 2009 at 8:38 AM // reply »
7 Comments

Thanks for putting this out there. I haven't done much with custom tags for the last few years but they are still useful and pretty great for portability reasons!


Aug 24, 2009 at 8:39 AM // reply »
10,640 Comments

@Andy,

Glad you like it my man. Custom tags are very powerful things.


Oct 7, 2010 at 4:48 PM // reply »
149 Comments

@Ben, I'm trying to figure out what the difference is between a custom tag and calling a function inside a CFC.

Right now we have zero CT's. Is it leaner to simply put
<cf_GetNewAccount Variable="Username"> than to <cfset variable=account.newAccount(Username)>? (Sorry if the coding is wrong)


Oct 10, 2010 at 4:16 PM // reply »
10,640 Comments

@Randall,

Typically, application business logic is being packaged inside of your ColdFusion components these days. As such, for your example, I would go with a CFC.

ColdFusion custom tags are great for more display logic, domain specific languages (DSL - basically a fancy way to abstract the way things are "described"), and for creating control flow (ie. augmenting the core language in a way that is not tied to any particular application).


Nov 9, 2010 at 10:58 AM // reply »
149 Comments

Any performance hit between Tags and CFCs? Have you ever tested?

I'm just imagining it needing to read an /additional/ file from disk (versus possibly having a CFC already loaded in memory). Or is it a moot point after the first go 'round?


Nov 9, 2010 at 2:04 PM // reply »
10,640 Comments

@Randall,

ColdFusion will try to cache all "Templates." There's not that much difference between a template that ends in CFC and a template that ends in CFM. That said, as long as you have your template cache turned on, there shouldn't be disk overhead for either case.

Comparing the performance of the two is someone of a moot point as custom tags do different things than components. Really, you just want to pick the right tool for the job.


Jul 26, 2011 at 8:44 AM // reply »
33 Comments

Hi Ben,

Just wanted to ask you like can we use application scoped variables inside a custom tag page or we can only use request scope variables?


Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
InVision App - Prototyping Made Beautiful With Prototyping Tools Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
Feb 10, 2012 at 7:21 PM
jQuery AJAX Strips Script Tags And Inserts Them After Parent-Most Elements
Update! Instead of $(eval(options.insertAfter)).after(data['insertData']); I now use: var ajaxNode = document.createElement('span'); var parent = $(eval(options.insertAfter))[0].parentNode; ... read »
Feb 10, 2012 at 6:18 PM
jQuery AJAX Strips Script Tags And Inserts Them After Parent-Most Elements
encountered this same, what I consider, jQuery bug last week. I'm building a site in which I load some content via AJAX. This content contains Linkedin share button placeholders which Linkedin API ne ... read »
Feb 10, 2012 at 11:30 AM
Cross-Origin Resource Sharing (CORS) AJAX Requests Between jQuery And Node.js
After you understand the concepts here, this is an awesome cheatsheet for enabling CORS in just about anything http://enable-cors.org/ ... read »
JM
Feb 10, 2012 at 9:10 AM
My Safari Browser SQLite Database Hello World Example
@Amy, Here is a very good tutorial on how to use JOIN: http://www.sqltutorial.org/sqljoin-innerjoin.aspx ... read »
Feb 10, 2012 at 4:42 AM
Building A Twitter-Inspired RESTful API Architecture In ColdFusion
This is great, very useful Ben. I spotted a small typo in the api.cgm listing: <cfthrow type="Unauthroized" /> Cheers Stefan ... read »
Feb 9, 2012 at 10:35 PM
CFDirectory Filtering Uses Pipe Character For Multiple Filters (Thanks Steve Withington)
I was wondering if there would be a filter you could apply so that you got everything but what you included in the filter. As in show me all docs that are not a .pdf. ... read »
Feb 9, 2012 at 10:29 PM
Learning ColdFusion 9: Application-Specific Data Sources
@Ben, No offence, but if people were really wanting advanced features they would be using a platform like ASP.NET MVC. CFML is so structurally compromised as a tag-based scripting language that ... read »
Feb 9, 2012 at 10:03 PM
Subversion - Cleanup Failed To Process The Following Paths
@Leviaguirre, do you still have problems with this? ... read »