我在创建 Facelet 组合控件(= 自定义标记)时遇到问题。
那是组件的模板 (numberinput.jspx)。我在我的 custom-taglib.xml 中声明了。
到目前为止,包含使用以下代码工作:
<ft:numberInput nullablenumber="true" cid="myId"
bind="#{myBean.mySpecialComponent}"
value="#{myBean.license.myProperty }"
label="My Label"/>
那是模板:
<div id="c_#{cid}"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
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:ice="http://www.icesoft.com/icefaces/component"
xmlns:ft="http://www.mycomp.com/facelets"
xmlns:c="http://java.sun.com/jsp/jstl/core" style="overflow:auto" >
<ui:composition>
<ice:message for="#{cid}"></ice:message>
<ice:outputLabel for="#{cid}">#{label }</ice:outputLabel>
<ice:inputText
id="#{cid}"
value="#{value}"
style="#{style }"
required="false"
disabled="#{disabled }"
binding="#{ bind}"
>
<f:validator validatorId="notnull"/>
<f:converter converterId="nullableNumber"/>
</ice:inputText>
</ui:composition>
</div>
当我的页面上有多个这些标签时,我的问题就出现了。我似乎让 Facelets 感到困惑并且只显示其中的一组,这真的很奇怪。
我的代码有什么问题吗,还是 Facelets 和看起来一样有问题?
非常感谢。
根据我目前的经验,我只能阻止任何人使用 Facelets 自定义标签(至少在使用组件绑定时)。
环境信息:我使用的是 ICEFaces 1.8.2 和 Tomcat 6