3 Replies Latest reply on Jan 29, 2008 11:38 PM by robertocarlos1

    <a4j:log> with property pupup="true" cause javascript error

      when a4j log has the property popup set to true, the error

      Expected ')'
      is showing in the page. If i put the property to false all works fine.

      <?xml version="1.0" encoding="UTF-8"?>
      <jsp:root version="1.2" xmlns:a4j="http://richfaces.org/a4j" xmlns:rich="http://richfaces.org/rich" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
       <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
       <f:view>
       <ui:page id="page1">
       <ui:html id="html1">
       <ui:head id="head1">
       </ui:head>
       <ui:body id="body1">
       <h:panelGrid columns="1" width="100%">
       <!-- more tags -->
       <a4j:log popup="true" level="ERROR" height="300px" width="800px" >
       </a4j:log>
       </ui:body>
       </ui:html>
       </ui:page>
       </f:view>
      </jsp:root>