0 Replies Latest reply on Mar 10, 2009 9:01 PM by valatharv

    jboss-seam-2.0.2.SP1 using richfaces 3.2.2 GA for rich inplaceinput and select

    valatharv
      Hi,

      We currently have application deployed on Production (jboss-4.2.3 and jboss-seam-2.0.2.SP1).

      As some of the richfaces component are not supportted by jboss-seam-2.0.2.SP1 and we need to use "rich:inplaceInput" :

      a) Can we simply use "richfaces-api-3.2.2.GA.jar", "richfaces-impl-3.2.2.GA.jar" and "richfaces-ui-3.2.2.GA.jar" with above version of jboss and seam, do you foresee any impact ?

      b) I am trying to test "rich:inplaceInput" with update version of richfaces (3.2.2.GA) and need to call action="#{projectHome.update}" on clicking update, to update the value in database.

      <rich:inplaceInput defaultLabel="#{project.projectName}" showControls="true"
      controlsHorizontalPosition="left" controlsVerticalPosition="bottom"
      id="inplaceInput">
        <f:facet name="controls">
         <button id="update" onmousedown="#{rich:component('inplaceInput')}.save();"
          type="button">Update</button>   //CALL PROJECTHOME.UPDATE HERE
           <button onmousedown="#{rich:component('inplaceInput')}.cancel();"
            type="button">Cancel</button>
        </f:facet>
      </rich:inplaceInput>