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

We can access the Composite Component attribute values (defiled in the interface section), in the implimentation like #{cc.attrs.attributeName}

How can we access this value in the backing component?

share|improve this question

1 Answer

up vote 2 down vote accepted

It's just available inside any of the methods by the inherited getAttributes() method which returns a Map<String, Object> with the attribute name as map key and attribute value as map value.

Bar bar = (Bar) getAttributes().get("bar");
// ...
share|improve this answer
I want to access the attribute of the Composite Component in the backing bean of that Composite Component itself. The backing bean will use the attribute for implementing the Composite Component. (I hope you described above how to access the attribute of the Composite Component in the backing bean of the page which uses the Composite Component) – DUKE Aug 1 '11 at 12:51
So, you're talking about the backing UIComponent? That's not a backing bean... Just call the inherited getAttributes() method. See also our composite component wiki page: stackoverflow.com/tags/composite-component/info – BalusC Aug 1 '11 at 12:52
This is exactly what I have been looking for. The link you gave is also very useful. Thanks a lot BalusC. – DUKE Aug 1 '11 at 13:36
You're welcome. I've updated your question and my answer accordingly to reflect what you really meant and what you really need. – BalusC Aug 1 '11 at 13:38
Nice, Thanks again! – DUKE Aug 1 '11 at 13:43

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.