3 Replies Latest reply on Apr 28, 2008 7:23 AM by ilya_shaikovsky

    a4j:log throws client-side OutOfMemory in IE

    gjeudy

      Hi,

      I am using Richfaces 3.2.0 with Seam 2.0.1 in JBoss AS 4.2.2.

      Something was going wrong with ajax requests sent by an a4j:support tag added and attached to h:inputText fields inside a dataTable so I decided to add a4j:log to help determine what is going on.

      As soon as I add this component it throws an out of memory at line: 191 IE popup when I trigger the AJAX request.

      Here's a simplified example of my code:

      <h:form id="domainInstancesForm">
       <h:dataTable var="domInstance"
       value="#{activeDomain.referenceDomainInstances}">
       <h:column>
       <f:facet name="header">
       <h:outputText value="Valid from date" />
       </f:facet>
       <a4j:outputPanel id="outpanevalidFromDate" >
       <div class="entry">
       <s:label styleClass="label #{invalid?'errors':''}">
       <s:span styleClass="required">*</s:span>
       </s:label>
       <span class="input #{invalid?'errors':''}">
       <s:validateAll>
       <h:inputText id="validFromDate" value="#{domInstance.validityPeriod.validFromDate}" required="true">
       <a4j:support event="onblur" reRender="outpanevalidFromDate">
       </a4j:support>
       </h:inputText>
       </s:validateAll>
       </span>
       <s:message styleClass="errors"/>
       </div>
       </a4j:outputPanel>
       </h:column>
       </h:dataTable>
       <a4j:log level="ALL" style="width: 800px; height: 300px;"></a4j:log>
       </h:form>
      
      Has anyone hit similar issues with a4j:log tag ?
      
      Thank you,
      -Guillaume