Ugh...
I'll have to test that, the first form should work just as well.
On 9/25/06, HulaBula <[EMAIL PROTECTED]> wrote:
Does it work now? I ran into a similar problem and now figured out that
the config-parser treats
<family>
blue
</family>
different to
<family>blue</family> (<-- which will work)
You can see that behaviour if you step-debug through
CoreRenderingContext.java. (linebreaks are not trimmed)
greets!
clemens
Simon Lessard wrote:
> You must specify the skin-family in trinidad.config.xml to value: blue.
>
> On 9/25/06, Causevic, Dzenan <[EMAIL PROTECTED]> wrote:
>>
>>
>> I am a beginner to Trinidad components and I have a simple question
>> regarding the use of style sheets.
>> I am getting default look for tab components, however my page is
>> using my
>> own style sheet and now I need to get these tabs to use the same
>> colors as
>> the rest of the page.
>>
>> The documenation is not so clear, that's why I am posting here for
help.
>> I created WEB-INF/trinidad-config.xml file and added following
>> directive:
>> <skin-family>blueSkin</skin-family>
>> Then I created WEB-INF/trinidad-skins.xml like this:
>> <skins xmlns="http://myfaces.apache.org/trinidad/skin">
>> <skin>
>> <id>
>> blue.desktop
>> </id>
>> <family>
>> blue
>> </family>
>> <render-kit-id>
>> org.apache.myfaces.trinidad.desktop
>> </render-kit-id>
>> <style-sheet-name>
>> stylesheet/blueSkin.css
>> </style-sheet-name>
>> </skin>
>> </skins>
>>
>> Finally I placed blueSkin.css (the one from the demo page) in my
>> web/stylesheet directory.
>>
>> However I still get a default look for my tabs. What am I still missing
>> here?
>>
>>
>