I'm experiencing a problem using the alias bean.
My JSP roughly looks like:
<h:form>
<x:aliasBean>
<f:subview>
<t:insert page=.../>
</f:subview>
</x:aliasBean>
</h:form>
The inserted page contains input components. When I
submit the values, I get a binding error. The problem
seems to lie in the fact that the alias bean has removed
the binding before the EL to set the value is run, thus
giving me a binding error.
Is using tiles in this scenario supported? Does aliasBean
work for this? The examples only show output components.
-- Jon