0 Replies Latest reply on Jan 20, 2009 5:28 PM by micrus009

    Problem a4j:commandButton problem in FireFox.

    micrus009
      a4j:commandButton, submitted in FireFox , don't call action method.

      Here is the code snippet:
      <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/template.xhtml"
                      xmlns:a4j="http://richfaces.org/a4j">

      <ui:define name="body">
                     
          <a4j:form>
              <h:panelGrid columns="3" styleClass="gridhello" columnClasses="gridhellocolumn">
                  <h:outputText value="Name:" />
                  <h:inputText value="#{counter.strValue}" />
                  <a4j:commandButton value="Say Hello" reRender="out" />
              </h:panelGrid>
          </a4j:form>
          <rich:spacer height="7"/>
          <br />
          <h:panelGroup id="out">     
              <h:outputText value="#{counter.strValue}" styleClass="outhello" />
          </h:panelGroup>
         
          <br />
      </ui:define>
      </ui:composition>


      Action call from IE6, but do nothing in FF3