1 2 Previous Next 21 Replies Latest reply on Apr 30, 2008 7:15 AM by gob

    a4j:status confused after opening modalPanel

    artmooney

      With the following I open a modalPanel

      <a4j:form id="newRelation">
      <a4j:commandButton styleClass="submitButton"
      value="Neue Beziehung"
      onclick="javascript:Richfaces.showModalPanel('edit_relations', {width:700, top:230})"
      status="commonstatus"
      actionListener="#{doctorDetailsController.newRelation}"
      reRender="edit_relation_panel" />
      </a4j:form>

      Afterwards the global a4j:status which should show Ajax activity does not switch back to stop mode.


      The panel is:

      <rich:modalPanel id="edit_relations" minHeight="230" minWidth="550"
      height="230" width="550" zindex="2000">
      <f:facet name="header">
      <h:outputText value="Bearbeitung Beziehung" />
      </f:facet>
      <f:facet name="controls">
      <h:graphicImage value="/images/prcrm/close.png"
      style="cursor:pointer"
      onclick="Richfaces.hideModalPanel('edit_relations')" />
      </f:facet>

      <a4j:outputPanel id="edit_relation_panel" layout="none">
      <a4j:form id="editRelation">
      ...

        1 2 Previous Next