我有以下复合组件
<ui:component xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:cc="http://java.sun.com/jsf/composite"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:p="http://primefaces.org/ui">
<cc:interface>
<cc:attribute name="rows" />
<cc:attribute name="value"
type="org.primefaces.model.LazyDataModel" />
<cc:attribute name="var" />
<cc:attribute name="id" />
<cc:attribute name="rowStyle" default="false"/>
</cc:interface>
<cc:implementation>
<p:dataTable value="#{cc.attrs.value}"
rendered="#{not empty cc.attrs.value}" id="#{cc.attrs.id}"
paginator="true" rows="25"
currentPageReportTemplate="Showing {startRecord}-{endRecord} of {totalRecords}"
paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"
rowsPerPageTemplate="25,50,100" paginatorPosition="bottom"
lazy="true" rowStyleClass="#{cc.attrs.rowStyle}">
<c:set target="#{component}" property="var" value="#{cc.attrs.var}"/>
<cc:insertChildren />
</p:dataTable>
</cc:implementation>
</ui:component>
我的要求是: 在少数情况下,我将传递rowStyle的值,否则如果未传递该值,则应采用默认值。
我在复合组件中添加了以下行
<cc:attribute name="rowStyle" default="false"/>
但它不起作用。为什么呢?
答案 0 :(得分:2)
请注意,default
属性用于处理属性未传递的情况,而不是属性为空的情况。< / p>
所以,给定这个界面:
<cc:interface>
<cc:attribute name="monkey" />
<cc:attribute name="food" default="banana" />
</cc:interface>
如果我这样调用它,food
的值将为banana
:
<barrel monkey="Bonzo" />
但是,如果myFood
是null
,我会像这样调用它:
<barrel monkey="Bonzo" food="#{myFood}" />
然后food
的值为null
。
答案 1 :(得分:0)
我认为你需要在默认情况下输入acctual CSS类名。
因此,默认值不是true / false标志,而是具有实际值的字段。