Is it possible to declare a composite-component in such a way that it can just be placed inside certain tags?
E.g that:
<span>
<n:myComponent/>
</span>
would be illegal, while:
<div>
<n:myComponent/>
</div>
would be legal.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Not during buildtime, but during rendertime you could check the siblings of the component.
You can do this in an
UINamingContainerimplementation which is as@FacesComponentreferenced by<cc:interface componentType>.