How to pass the node value as the attribute in Composite Component in JSF 2.0

99封情书 提交于 2019-12-01 23:54:41

You aren't passing it as tag attribute. You are just passing it as child in the tag body. In that case you need to use <composite:insertChildren /> to insert it. So, instead of

<td>#{cc.attrs.value}</td>

you should be doing

<td><composite:insertChildren /></td>

Or if you actually want to use #{cc.attrs.value}, then you should be defining it as a real tag attribute from the beginning on instead of as tag body:

<someDir:boxComp value="Hello" />
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!