Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have swapped out a composition to re-use it. The composition contains tags like this:

<t:radio for=":someForm:someComponent" index="#{index}" />

I include the composition like this:

<ui:include src="/theComposition.xhtml">
    <ui:param name="someParam" value="#{someBean}" />
</ui:include>

But how can I parameterize the "someForm" part of the composition? Because that will differ depending on where I include it. I could pass a string... but how should I concatenate it? Or is there any other way?

share|improve this question

1 Answer

up vote 1 down vote accepted

You can just inline EL in the attribute value.

<t:radio for=":#{someParam}:someComponent" index="#{index}" />
share|improve this answer
Perfect - I didn't know it was that easy. – geeehhdaa May 26 '11 at 12:07
You're welcome. – BalusC May 26 '11 at 12:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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