Hi. I can not set the value in the input type text tag when I link to other page.The input type text appear with empty value. thanks in advance
MBEAN
@ManagedBean
@SessionScoped
public class OrganizacionController {
private String razon;
//getter and setter
//
}
PAGE1:
<h:form ">
<h:commandLink action="page2.faces" value="Go">
<f:setPropertyActionListener value="#{test}" target="#{organizacionController.razon}"/>
</h:commandLink>
</h:form>
PAGE2:
<h:form>
<h:inputText value="#{organizacionController.razon}" />
</h:form>
PAGE1:
<h:form id="formulario" name="frm1">
<h:commandLink action="test2.faces" value="Ir" >
<f:setPropertyActionListener value="#{erik}"
target="#{organizacionController.razon}" />
</h:commandLink>
</h:form>
PAGE:2
<h:form id="formulario" name="frm1">
<h:outputText value="#{organizacionController.razon}"></h:outputText>
<h:inputText value="#{organizacionController.razon}" disabled="true"/>
</h:form>
PAGE1:
<h:form id="formulario" name="frm1">
<h:commandLink action="test2.faces" value="Ir" >
<f:setPropertyActionListener value="#{erik}"
target="#{organizacionController.razon}" />
</h:commandLink>
</h:form>
PAGE:2
<h:form id="formulario" name="frm1">
<h:outputText value="#{organizacionController.razon}"></h:outputText>
<h:inputText value="#{organizacionController.razon}" disabled="true"/>
</h:form>