dev@jsf-extensions.java.net

AjaxZones broken?

From: Ken Paulsen <Ken.Paulsen_at_Sun.COM>
Date: Sat, 09 Dec 2006 22:02:42 -0800

Hi Ed (or anyone else that knows),

Are AjaxZones currently broken? I get "mismatched tag" errors on the
partial response sent back from the server. I am using the latest
version of JSF (1.2_03-b06-FCS), which may be contributing to the
problem. It appears that the CDATA tags around the
DynaFacesZones.ajaxifyChildren(...) in the response is causing the problem.

Below is a JSP w/ a single button in an AjaxZone that demonstrates the
problem.

Thanks,

Ken Paulsen
ken.paulsen_at_sun.com
https://jsftemplating.dev.java.net


<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib prefix="jsfExt"
uri="http://java.sun.com/jsf/extensions/dynafaces" %>

<f:view>
<html>
<head>
  <title>DynaFaces JSP Blank App</title>
  <jsfExt:scripts />
</head>
<body bgcolor="white">

<h:form id="form">

  <h1>DynaFaces JSP Blank App</h1>

    <jsfExt:ajaxZone id="zone1">
        <h:commandButton value="ZONE Request FOO" />
    </jsfExt:ajaxZone>

</h:form>

</body>
</html>
</f:view>