0 Replies Latest reply on Aug 26, 2008 12:27 PM by johnboy

    Progress Bar in 3.2.1..

    johnboy

      I am having real issues with 3.2.1. It is like the Ajax events are not occuring. This is particularly obvious with the progress bar. The effect is that I am not able to migrate to 3.2.1 but have to stick on 3.2.0GA.

      When I bring up the progress bar nothing happens till I force a rerender of the items on the screen..

      It should be noted I am using the JBOSS portal 2.6.5 SP1. Portal Bridge B3

      3.2.0 seems OK .

      Here is my progressbar sample that works fine with 3.2.0GA.. I suspect there is some config I need to change to get 3.2.1 to work which I can not seem to gleem from the documents.

      <h:dataTable id="errors" value="#{ConfigurationBean.currentres.errors}" var="errorval">
      <h:column>
      <h:outputText styleClass="errorText" value="#{errorval}"/>
      </h:column>
      </h:dataTable>
      <f:subview id="reup" >
      <c:if test="${ConfigurationBean.currentres.actionmonitor.enabled == true}">
      <a4j:form id="waitForm" ajaxSubmit="true" reRender="resourceListPanel,operationsPanel,opPanel">
      <h:outputText style="font-weight: bold;" value="#{ConfigurationBean.currentres.actionmonitor.actionname} #{ConfigurationBean.currentres.actionmonitor.resinvolved}"></h:outputText>

      <a4j:outputPanel id="progressPanel" >
      <rich:progressBar
      immediate="true" timeout="2000" styleClass="remainClass"
      value="#{ConfigurationBean.currentres.actionmonitor.value}"
      mode="ajax" rendered="#{ConfigurationBean.currentres.actionmonitor.enabled}"
      interval="#{ConfigurationBean.currentres.actionmonitor.time}"
      label="#{ConfigurationBean.currentres.actionmonitor.value} %"
      minValue="-1" maxValue="100" reRenderAfterComplete="reup" >
      </rich:progressBar>
      </a4j:outputPanel>
      </a4j:form>

      </c:if>
      </f:subview>