1 Reply Latest reply on May 12, 2009 11:27 AM by nickarls

    Problem bijection.

    konstt2000

      Hi,


      I've a EJB and xhtml page. I try bijection with attribute codSolicitud but its dont work.. why?



      @Stateful
      @Name("formularioDetalle")
      @Scope(ScopeType.SESSION)
      public class FormularioDetalleSolicitudImp implements FormularioSolicitud{
              
              @Logger
              private Log log;
              
              @In(required=false)
              private Long codSolicitud;
      




      <!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
                            "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
      <ui:composition xmlns="http://www.w3.org/1999/xhtml"
                      xmlns:s="http://jboss.com/products/seam/taglib"
                      xmlns:ui="http://java.sun.com/jsf/facelets"
                      xmlns:f="http://java.sun.com/jsf/core"
                      xmlns:h="http://java.sun.com/jsf/html"
                      xmlns:rich="http://richfaces.org/rich"
                      template="layout/templateLogin.xhtml">
      
      <ui:define name="body">
          
          <h:messages styleClass="message"/>
          
      
          
      <rich:panel>
             
                      <h:form>
                              <h:inputText value="#{formularioDetalle.codSolicitud}"></h:inputText>
                              <s:link action"#{formularioDetalle.dimeElCodSolicitud}" value="Finalizar" />
                      </h:form>
                                                                          
      </rich:panel>
      
      
       </ui:define> 
      </ui:composition>
      
      



      Thanks.