1 Reply Latest reply on Mar 8, 2011 10:06 PM by boy18nj

    Problem including JSTL tag in JSP

    tmccobb

      I want to use the JSTL tag c:forEach to create dynamic tabs.  As soon as I add the JSTL URI to my JSP page

       

      <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

      <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>

      <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>

      <%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>

      <%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>

      <%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>

       

      , I get the following error (without even adding any jstl tags):

       

      org.apache.jasper.JasperException: <h3>Validation error messages from TagLibraryValidator for c in /WEB-INF/jsp/PersonDetail.jsp</h3><p>null: org.xml.sax.SAXParseException: Attribute "width" was already specified for element "rich:extendedDataTable".</p>

       

      I have the jstl-1.2.jar and standard-1.1.2.jar in my classpath.  I am using RF 3.3.3.

       

      There is no extendedDataTable on the page, btw.

       

      Tom McCobb