[wise-commits] wise SVN: r465 - in webgui/branches/cdi-jsf: src/main/webapp and 1 other directory.

wise-commits at lists.jboss.org wise-commits at lists.jboss.org
Mon Jan 28 12:44:34 EST 2013


Author: alessio.soldano at jboss.com
Date: 2013-01-28 12:44:33 -0500 (Mon, 28 Jan 2013)
New Revision: 465

Modified:
   webgui/branches/cdi-jsf/pom.xml
   webgui/branches/cdi-jsf/src/main/webapp/index.xhtml
Log:
Fixing issue with ajax submission of multiple forms, related to RF-12442


Modified: webgui/branches/cdi-jsf/pom.xml
===================================================================
--- webgui/branches/cdi-jsf/pom.xml	2013-01-27 00:22:48 UTC (rev 464)
+++ webgui/branches/cdi-jsf/pom.xml	2013-01-28 17:44:33 UTC (rev 465)
@@ -39,7 +39,7 @@
       <version.org.jboss.as.plugins.maven.plugin>7.3.Final</version.org.jboss.as.plugins.maven.plugin>
       <version.org.jboss.spec.jboss.javaee.6.0>3.0.0.Final</version.org.jboss.spec.jboss.javaee.6.0>
        
-      <version.org.richfaces>4.2.0.Final</version.org.richfaces>
+      <version.org.richfaces>4.3.0.CR2</version.org.richfaces> <!-- 4.3.0 required due to https://issues.jboss.org/browse/RF-12442 -->
       <version.wise.core>2.0.0-SNAPSHOT</version.wise.core>
 
       <!-- other plugin versions -->

Modified: webgui/branches/cdi-jsf/src/main/webapp/index.xhtml
===================================================================
--- webgui/branches/cdi-jsf/src/main/webapp/index.xhtml	2013-01-27 00:22:48 UTC (rev 464)
+++ webgui/branches/cdi-jsf/src/main/webapp/index.xhtml	2013-01-28 17:44:33 UTC (rev 465)
@@ -20,7 +20,7 @@
                 <h:form id="wsdlSelection">
                     <h:outputLabel value="URL:" for="wsdlUrlInput"/>
                     <h:inputText id="wsdlUrlInput" value="#{clientConversationBean.wsdlUrl}" />
-                    <a4j:commandButton value="OK" render="opSelectionPanel" action="#{clientConversationBean.readWsdl}" />
+                    <a4j:commandButton value="OK" render="epSelection" action="#{clientConversationBean.readWsdl}" />
                 </h:form>
             </rich:panel>
             <br />
@@ -36,7 +36,7 @@
                                     <rich:panelMenuGroup label="#{port.name}" expanded="true">
                                         <c:forEach var="operation" items="#{port.operations}" >
                                             <rich:panelMenuItem label="#{operation.fullName}" name="#{service.name};#{port.name};#{operation.name}"
-                                                action="#{clientConversationBean.parseOperationParameters}"/>
+                                                action="#{clientConversationBean.parseOperationParameters}" render="parInputPanel parInput"/>
                                         </c:forEach>
                                     </rich:panelMenuGroup>
                                 </c:forEach>



More information about the wise-commits mailing list