I have the following case:

<cc:interface>
    <cc:attribute name="someValue" />
</cc:interface>

<cc:composite>
    <x:someComponent>
        <span>#{cc.attrs.someValue}</span>
    </x:someComponent>
</cc:composite>

So inside my composite component I am calling some other composite component and trying to pass the parameter given to the "master" composite component to the inner composite component.

This fails, because inside x:someComponent tags the cc implicit object seems to refer to this x:someComponent instead.

A workaround is to create a temporary field for the x:someComponent so this can be achieved as:

<x:someComponent passthroughField="#{cc.attrs.someValue}">
    <span>#{cc.attrs.passthroughField}</span>
</x:someComponent>

However that's very ugly and unconvenient.

Any other ways around this problem?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

One way to hack around this is to use ui:param as in:

<ui:param name="foo" value="cc.attrs.someValue" />
<x:someComponent>
    <span>#{foo}</span>
</x:someComponent>

See more in another question.

link|improve this answer
I've been using this now. It works, so picking my own answer as accepted :) – Tuukka Mustonen Jan 20 '11 at 17:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.