I am referring to pretty deep object hierarchies with pretty cryptic names in EL as in #{myBean.configBaseStack.excludeMethodFromAccounting.method.TimeoutBehaviorEnabled}
.
I would like to point to this very same property through an alias like in:
<x:alias name="m" value="#{myBean.configBaseStack.excludeMethodFromAccounting.method" />
<h:inputText value="#{m.TimeoutBehaviorEnabled}" />
I guess one way to accomplish this would be to create these aliases in the backing bean, but I'd rather leave that to the template.
How to accomplish this in template/facelet level?
f:param
andf:attribute
but didn't realize there was this :) Seems to work, thanks! – Primateship