Hi all
I have managed bean that contains few another nested beans.
First  jsp binds inputs to managed bean properties and includes (at runtine) another jsp, that binds its' input
to appropriate nested bean's properties.
The code :
 
<h:form>
... main jsp page .....
.........
<f:subview id="addInfo" >
<f:verbatim>
<jsp:include page="${clientBean.addinionalInfoJSPName}" />
</f:verbatim>
</f:subview>
</h:form>
 
All jsp(s) use the same bean to tier input valies.
The problem is  that on submit, only inputs from main jsp are set and those from additional jsp aren't.
Please advise, thanks

Reply via email to