Re: Include multiple css in @IncludeStylesheet

2008-09-25 Thread Keith Bottner
I had this same problem. You were close. Try this. @IncludeStylesheet({"context:css/page.css", "context:css/tapestry- custom.css"}) It takes an array so you need to have the curly braces on the outside of your comma delimited style sheets. Keith On Sep 25, 2008, at 9:34 AM, Leon Derks wro

Re: Include multiple css in @IncludeStylesheet

2008-09-25 Thread Kristian Marinkovic
have you tried this: @IncludeStylesheet({"first.css","second.css","third.css"}) g, kris Leon Derks <[EMAIL PROTECTED]> 25.09.2008 16:34 Bitte antworten an "Tapestry users" An Tapestry users Kopie Thema Include multiple css in @IncludeS

Re: Include multiple css in @IncludeStylesheet

2008-09-25 Thread Hugues Narjoux
Hi, Yous imply need to surround them with {}. Like this : @IncludeStylesheet( { "context:css/page.css", "context:css/tapestry-custom.css" } ) On Thu, Sep 25, 2008 at 4:34 PM, Leon Derks <[EMAIL PROTECTED]> wrote: > Hello > > How can I add multiple stylesheets to the @includeSysheet annotatio

Include multiple css in @IncludeStylesheet

2008-09-25 Thread Leon Derks
Hello How can I add multiple stylesheets to the @includeSysheet annotation? In the documentation I read that one or more paths can be injected. But how can I do that? For example I want something like this: @IncludeStylesheet("context:css/page.css", "context:css/tapestry-custom.css") -