`

f:facet

阅读更多

《Java Server Faces 2.0,The Complete Reference》对f:facet是这样解释的:

The f:facet tag signifies a nested component that has a special relationship to its enclosing

tag. For example, stating that the “header” of a table is to be provided by a JSF component.

This element adds the component represented by the JSF action in its body as a facet with

the specified name to the component represented by the closest JSF component parent

action element. This tag only allows one component to be nested within itself. To use

multiple components as a facet, create them as children of a simple container component.

For example, nest the corresponding HTML library component actions within the body of

a panelGroup component.

意思是:f:facet表示一个"被嵌套组件",这个组件和包含它的标签有特定关系的。...(<f:facet>被嵌套组件</f:facet>,一次只能包含一个"被嵌套组件")

 

 

JSFToolBox网站上是这样解释的:

 

The Facet tag registers a named facet on the component associated with the enclosing tag. A facet represents a named section within a container component. For example, you can create a header and a footer facet for a dataTable component.

意思和上面差不多。

 

 

能找到的资料上基本都是举这样一个例子来试图说明f:facet的用法:

 

  1. <h:dataTable id="reportTable" value="#{reportBean.dailyReport}" var="item">  
  2.   <h:column>  
  3.     <f:facet name="header">  
  4.       <h:outputText value="Daily Report" />  
  5.     </f:facet>  
  6.     <h:outputText value="#{item}" />  
  7.   </h:column>  
  8. </h:dataTable>  
 

 

疑问来了,既然name="****"代表的是facet与包含它的组件的关系,那么这个关系是不是可以自己随便写呢?"被嵌套组件"是不是可以随便写呢?

改写上面的代码:

 

  1. <h:dataTable id="reportTable" value="#{reportBean.dailyReport}" var="item">  
  2.   <h:column>  
  3.     <f:facet name="header">  
  4.       <h:inputText value="Daily Report" />  
  5.     </f:facet>  
  6.     <f:facet name="relation">  
  7.       <h:outputText value="Daily Report" />  
  8.     </f:facet>  
  9.     <h:outputText value="#{item}" />  
  10.   </h:column>  
  11. </h:dataTable>  
 

 

运行发现header变成了不再是文字,而是一个输入框,

<f:facet name="relation"> <h:outputText value="Daily Report" /> </f:facet>没有任何输出。

 

结论:

The name attribute sets the name of the facet to be created. Some components have facets with predefined names, such as the "header" and "footer" facets of the component associated with the h:dataTable tag.

 

只有组件预先就定义好的name的facet才能被接受,比如h:dataTable就预先定义了名为"header"和"footer"的facet。<f:facet>标签对之间的内容可以是任意组件。

 

分享到:
评论

相关推荐

    agent-java:Facet的Java代理

    agent-java:Facet的Java代理

    人事信息管理系统

    &lt;f:facet name="header"&gt; &lt;h:outputText id="headerText1" value="职工号"/&gt; &lt;/f:facet&gt; &lt;h:outputText value="#{person.id}"/&gt; &lt;/h:column&gt; &lt;h:column&gt; &lt;f:facet name="header"&gt; &lt;h:outputText id=...

    《JSF标签》简体中文版.pdf

    &lt;f:facet name="header"&gt;Item Name&lt;/f:facet&gt; #{item.name} &lt;/h:column&gt; &lt;/h:dataTable&gt; ``` ##### 2.2 表头、表尾 通过`&lt;f:facet&gt;`可以自定义表头和表尾,增加额外的灵活性。 ```html &lt;h:dataTable value="#{...

    Java Server Faces API 组件标签 API Reference 速查手册

    f:facet f:loadBundle f:param f:phaseListener f:selectItem f:selectItems f:setPropertyActionListener f:subview f:validateDoubleRange f:validateLength f:validateLongRange f:validator f:...

    JSF标签全解

    - **功能**:`f:facet` 标签用于为包含它的父组件及其内部子组件建立特殊关系。通常用于指定标题、页脚等内容。 - **使用示例**: - JSP: ```jsp &lt;f:facet name="header"&gt; &lt;h:outputText value="Title"/&gt; &lt;/f:...

    JSF标签详解(一个不漏).doc

    &lt;f:facet name="header"&gt; &lt;h:outputText value="Title"/&gt; &lt;/f:facet&gt; ``` loadBundle loadBundle标签用于支持JSP本地化(多语言支持)操作。示例代码: ``` &lt;f:loadBundle basename=...

    精通JSF标签一字不漏

    `f:facet` 标签用于为包含它的父组件定义特殊的区域,如标题、页脚等。这有助于构建更复杂、更具有层次感的用户界面。 **基本用法:** ```jsp &lt;f:facet name="header"&gt; &lt;h:outputText value="Title"/&gt; &lt;/f:facet&gt;...

    JSF标签库快速参考

    &lt;f:facet name="header"&gt;Price&lt;/f:facet&gt; #{item.price} &lt;/h:column&gt; &lt;/h:dataTable&gt; ``` **说明:** 以上示例展示了如何使用`dataTable`来显示一个包含名字和价格的列表,并通过`f:facet`为每个列添加表头。 -...

    Richfaces标签

    - `f:facet`:定义面板的不同部分,如头部、底部等。 **应用场景:** 弹出一个包含关闭按钮的模态面板,点击按钮后面板消失。 ##### 3. `inputNumberSlider`输入数字滑竿 `inputNumberSlider`是一个用于选择数值...

    richfaces标签学习笔记

    `f:facet name="header"` 用于定义标题,`f:facet name="controls"` 用于定义关闭按钮等操作。 接着,我们来了解 `inputNumberSlider`。这是一个滑动条组件,允许用户通过滑动选择一个数值。虽然示例中没有提供具体...

    richface标签.doc

    - `header` 和 `controls`:使用 `f:facet` 来定义面板的头部和控制部分。 - **示例代码**: ```xml &lt;rich:modalPanel id="panel" width="350" height="100"&gt; &lt;f:facet name="header"&gt; &lt;h:panelGroup&gt; &lt;h:...

    Richfaces的DateTable

    &lt;f:facet name="header"&gt; &lt;h:outputText value="日期" /&gt; &lt;/f:facet&gt; &lt;h:outputText value="#{item.date}" /&gt; &lt;/rich:column&gt; &lt;!-- 其他列配置 --&gt; &lt;/rich:datatable&gt; ``` 在这里,`value`属性指定数据列表...

    jsf2.0 dataTable单行修改例子

    &lt;f:facet name="header"&gt;Name&lt;/f:facet&gt; &lt;h:inputText value="#{item.name}" rendered="#{bean.isEditing(item)}" /&gt; &lt;h:outputText value="#{item.name}" rendered="#{!bean.isEditing(item)}" /&gt; &lt;/h:column&gt; ...

    PF5 PFE4 pdf export 表頭columnGroup 顯示修正1

    2. **`&lt;p:column&gt;`中使用`&lt;f:facet&gt;`进行自定义表头时出现问题**:在某些情况下,使用`&lt;p:column&gt;`标签并结合`&lt;f:facet&gt;`定义自定义表头(例如通过`&lt;h:outputText&gt;`显示"XXX")会导致显示错误。特别是,当需要格式化...

    学习技术 jsf必备 ————JSF标签.pdf

    &lt;f:facet name="header"&gt;Item Name&lt;/f:facet&gt; #{item.name} &lt;/h:column&gt; &lt;h:column&gt; &lt;f:facet name="header"&gt;Price&lt;/f:facet&gt; #{item.price} &lt;/h:column&gt; &lt;/h:dataTable&gt; ``` 此代码段将生成一个包含两列...

    ajax4jsf常用标签的使用借鉴.pdf

    &lt;f:facet name="head"&gt;...&lt;/f:facet&gt; &lt;!-- 页面内容在这里 --&gt; &lt;/a4j:page&gt; &lt;/f:view&gt; &lt;/jsp:root&gt; ``` `a4j:page`的属性包括`selfRendered`、`lang`、`title`、`renderRegionOnly`、`onunload`、`rendered`...

    北大青鸟-JSF标签

    - `&lt;f:facet&gt;`:允许向组件添加额外的显示部分。 - `&lt;f:param&gt;`:传递参数给动作或方法表达式。 - `&lt;f:attribute&gt;`:向组件添加属性。 - `&lt;f:actionListener&gt;`:注册操作监听器,用于响应用户的动作。 - `&lt;f:...

Global site tag (gtag.js) - Google Analytics