2010/5/19 Xabier Burgos Gimeno <[email protected]>: > <add-attribute > expression="${requestScope.url}/css/jquery-ui.css" type="velocity"/>
Use type="string"
> $tiles.importAttribute({"name":"styleSheets"})
> #foreach($styleSheet in $styleSheets)
> <link type="text/css"
> rel="stylesheet" href="${styleSheet.value}"/>
> #end
Do this:
<link type="text/css" rel="stylesheet" href="$tiles.render($styleSheet)"/>
HTH
Antonio
