• View
  • Source
The css link "includes/Spry/css/articles.css" is included in html head.

Handler

<cffunction name="dspLoadCSS" access="public" returntype="void" output="false">
    <cfargument name="Event" type="coldbox.system.beans.requestContext">
    <cfset var spry = getPlugin("Spry",true)>
    <cfset var cssLink = spry.getSpryRelativePath() & "/css/articles.css">
    <cfset spry.setCSSLink(cssLink,"screen")>
    <cfset Event.setValue("cssLink",cssLink)>
    <cfset Event.setView("spryExample/loadCSS")>        
</cffunction>

View

The css link "<cfoutput>#Event.getValue("cssLink")#</cfoutput>" is included in html head.