在 <xsl:模板匹配= "/" >标签 xls 之外应用素数样式?



我遇到有趣的事情是,在<xsl:template match="/">外应用样式这是方案

<?xml version = "1.0" encoding = "UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
        <ui:composition xmlns="http://www.w3.org/1999/xhtml"
        xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
        xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:p="http://primefaces.org/ui"
        template="/WEB-INF/template.xhtml">
<ui:define name="content">
          <p:tabView scrollable="true">
            <p:tab title="My Report">
                <h:panelGrid columns="2" cellpadding="5">
                    <xsl:apply-templates select="cd/title" />
                </h:panelGrid>
            </p:tab>

           </p:tabView> 
        </ui:define>
        </ui:composition>
</xsl:template>

<xsl:template match="messagetype">
 <p:panel header="Message Type">           **---->Trying to apply code for 
                                                 values it throws error p: is not bound**
   <span style="color:blue;">
        <xsl:value-of select="." />
    </span>
 </p:panel>
</xsl:template>

如果我定义了UI:<xsl:template match="/">上方的compsition,它会给我带来XLS

中的错误

我有很多我无法嵌套的代码,就像在 <xsl:template match="/">

中使用 <xsl:template match="messagetype">

将命名空间声明(例如xmlns:p="http://primefaces.org/ui")移至xsl:stylesheet元素。

相关内容

  • 没有找到相关文章