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

How can I extend a jsf primeface link? I want to use the actionListener attribute with the link and overwrite the encodeAll method.

share|improve this question

1 Answer

You could create a composite component as a wrapper and use a backing class:

<composite:interface componentType="my.special.Class">
...
</composite:interface>

<composite:implementation>

  // place your wrapped component here

</composite:implementation>

Overwrite the encodeChildren method in the backing Class.

Please note: This is rather a hack than a clean solution. Depending on what you want to do a custom renderer would be appropriate.

share|improve this answer

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.