Farcry: Know your tag libraries - introduction

When developing applications in Farcry a lot of time and head scratching can be saved by knowing the available tag libraries and how to use them.

Tag libraries are usually included at the top of the page like this:

<!--- tag libraries --->
<cfimport taglib="/farcry/core/tags/container" prefix="con">
<cfimport taglib="/farcry/core/tags/widgets" prefix="widge">
<cfimport taglib="/farcry/core/tags/webskin" prefix="skin" />

(The paths above are for Farcry 4. In Farcry 3 you would write "farcry_core" instead of "core")

Typically you only include the tag libraries that you need.

I will now and then post examples on how to work with the available tag libraries.

Stay tuned.

Comments