如何扩展jsf primeface链接?我想将actionListener
属性与链接一起使用并覆盖encodeAll
方法。
答案 0 :(得分:0)
您可以创建一个复合组件作为包装器并使用支持类:
<composite:interface componentType="my.special.Class">
...
</composite:interface>
<composite:implementation>
// place your wrapped component here
</composite:implementation>
覆盖支持类中的encodeChildren方法。
请注意:这是一个黑客而不是一个干净的解决方案。根据您的要求,自定义渲染器是合适的。