8

我有以下复合组件:

<?xml version="1.0" encoding="UTF-8"?>
<ui:component xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:c="http://java.sun.com/jsp/jstl/core"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:p="http://primefaces.org/ui"
    xmlns:fn="http://java.sun.com/jsp/jstl/functions"
    xmlns:composite="http://java.sun.com/jsf/composite">

    <composite:interface>
        <composite:attribute required="true" name="field" />
        <composite:attribute required="true" name="value" />
        <composite:attribute required="false" name="size"/>
    </composite:interface>

    <composite:implementation>
    ...
            <div class="wrapper">
                <h:inputText value="#{cc.attrs.value}"
                    id="#{field.id}" 
                    rendered="#{field.rendered}" 
                    size="#{cc.attrs.size}">
                </h:inputText>
                <h:messages for="#{field.id}" styleClass="errorMessage"/>
            </div>
    ...
    </composite:implementation>
</ui:component>

问题是,当我在不设置其size属性的情况下使用此组件时,它仍会像size=0在 html 输入元素中一样呈现。

我想要的是仅在嵌套h:inputText的属性具有有效值(例如,不为空)时才呈现它。或者,如果嵌套元素的所有属性没有被显式覆盖,我想公开它们。

怎么可能?

4

3 回答 3

13

您可以使用 JSTL<c:if>有条件地构建视图并<f:attribute>单独指定属性:

<h:inputText ...>
    <c:if test="#{not empty cc.attrs.size}">
        <f:attribute name="size" value="#{cc.attrs.size}" />
    </c:if>
</h:inputText>

另一种方法是为复合组件属性指定默认值:

<cc:attribute name="size" required="false" default="10" />
于 2012-10-15T14:17:10.487 回答
2

BalusC 帖子的补充:

你必须使用

cc:attribute-tag 中的 type="int" :

cc:属性名称=“最大长度”类型=“int”

于 2013-03-01T15:25:52.390 回答
0

我相信有另一种访问属性的方法。在访问以 java 保留关键字命名的属性时,我已将其与 JSF 2 一起使用。

{cc.attrs['size']}

于 2013-11-08T16:35:52.550 回答