Details
-
Task
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Implement passing of passthrough attribute with this notation for facelets:
<h:panelGrid p:attr1="value1"/>
This part is tricky, because passthrough attributes are different from normal attributes. The trick is make the diference in MetaRuleset implementation. In this way passthrough attributes are not handled as normal attributes. The idea is use the same api as for normal attributes but mark the rules that deals with passthrough attributes with an interface called PassthroughRule. Then we add the special rule in ComponentTagHandlerDelegate and that's it.