5 Replies Latest reply on Jul 31, 2008 8:49 PM by brma

    Standard Taglib included in JEE 5 and Seam

    brma

      I have an issue with the Standard Taglib library that is included in JEE5 and I wonder if Seam is the reason for it.


      The issue


      Although the formating tags out of the standard tag library are decleared in the top of the file

      xmlns:fmt="http://java.sun.com/jsp/jstl/fmt"

      the line
      <fmt:formatNumber value="100" type="number" />

      seems not to be parsed. If I view the page in the browser and open the source code for it, the entry stays there the same way and not the way he should... :(
      Is Seam preventing this section to be parsed?


      Any ideas would be highly appreciated!


      The source code


      <!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
                                   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
      <ui:composition xmlns="http://www.w3.org/1999/xhtml"
           xmlns:s="http://jboss.com/products/seam/taglib"
           xmlns:ui="http://java.sun.com/jsf/facelets"
           xmlns:f="http://java.sun.com/jsf/core"
           xmlns:c="http://java.sun.com/jsp/jstl/core"
           xmlns:fmt="http://java.sun.com/jsp/jstl/fmt"
           xmlns:h="http://java.sun.com/jsf/html"
           xmlns:a4j="http://richfaces.org/a4j"
           xmlns:rich="http://richfaces.org/rich" template="layout/template.xhtml">
           
           <ui:define name="body">
                <h:form id="mainForm">
                     <rich:panel>
                     ...
                     <fmt:formatNumber value="100" type="currency" />
                     ...
                     </rich:panel>
                </h:form>
           </ui:define>
      </ui:composition>