`
hejinxu615
  • 浏览: 5297 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

Richfaces笔记:a4j:outputPanel

阅读更多
a4j:outputPanel is rendered as a <span> html element if the 'layout' attribute is equal 'inline' (default value) or as a <div> html element if layout="block". You can use this component for a layout purpose even if the page has no Ajax functionality.

If Ajax functionality presents on the page, the component offers two additional features:

    * Marking the area of the page as automatically re-rendered on each Ajax request event without any necessity to mentioned this area in the reRender attribute of Ajax component. Attribute ajaxRendered="true" turn on this feature. Note, that the effect of using ajaxRendered="true" still might be overridden with the limitToList attribute of the Ajax component or renderRegionOnly attribute of the a4j:region component.
    * Marking the placeholder for any JSF component in case of it is not rendered due to rendered="false". This might be important when the component becomes rendered during the next Ajax response. As soon as the placeholder is unknown, the rendered component doesn't appear on a page. To turn on the feature for marking the placeholder, you need to have the attribute layout="none".

When layout="none", the span style="display:none" is rendered and assigns the id of the child component if the component is not rendered. Otherwise, it does not become rendered at all.
分享到:
评论

相关推荐

    RichFaces说明文档.doc

    2. 配置 RichFaces:在 web.xml 文件中添加 RichFaces 的配置信息,例如,添加 RichFaces 的监听器和过滤器。 3. 创建 RichFaces 项目:使用 IDE 创建一个新的 RichFaces 项目,例如,使用 MyEclipse 创建一个新的 ...

    a4j框架应用实例简介

    1. **异步通信**:A4J支持在后台与服务器进行异步数据交换,这意味着用户可以在不刷新整个页面的情况下更新特定部分。这种技术显著提高了Web应用的性能和用户友好性。 2. **事件驱动**:A4J利用JSF的事件模型,允许...

    a4j 指南

    1. **A4J组件**:A4J提供了一系列的UI组件,如`&lt;a4j:commandButton&gt;`、`&lt;a4j:commandLink&gt;`等,它们扩展了JSF的原生组件,增加了AJAX支持。这些组件可以在后台执行动作,而无需页面刷新。 2. **AJAX事件处理**:A4J...

    RichFaces/ A4J API 英文版 下载 附 java 调用webservice

    标题"RichFaces/A4J API 英文版 下载 附 java 调用webservice" 提到了两个主要知识点:RichFaces和A4J API的英文版,以及Java调用Web服务。这表明我们将在讨论一个用于构建富互联网应用程序(RIA)的框架,以及...

    A4J ajax4jsf中文指南 chm

    1. **实时更新**:A4J允许部分页面在不刷新整个页面的情况下更新,提高用户体验。 2. **事件驱动**:它使用JSF事件模型来触发AJAX请求,使得处理用户交互更为方便。 3. **可配置的异步行为**:开发者可以定义何时...

    a4j richfaces 常用标签例子

    这是用richfaces3.1写的一个学习笔记。需要的看看 在jboss4.2下运行正常。 在tomcat中如果抛异常。 是因为jar包不一样导致的。可以给我发留言。我给你完整包 liucheng418@163.com

    Richfaces组件使用指南

    xmlns:a4j="http://richfaces.org/a4j" xmlns:rich="http://richfaces.org/rich" ``` 4. **创建Web工程**: 创建一个JSF Web工程,然后在其中创建JSP或XHTML页面。下面是一个简单的示例页面`echo.jsp`,它展示...

    A4j 原创小案例+Spring+hibernate

    1. **A4j**:Ajax for Java的简称,是一个提供富因特网应用程序(RIA)功能的JavaScript库,它是RichFaces的一部分,允许开发者在JSF应用中轻松地实现异步更新和交互。 2. **Myfaces**:是一个开源的JSF实现,它...

    Richfaces 4 组件参考手册

    - **Panel appearance**:解释如何自定义 `&lt;a4j:outputPanel&gt;` 的外观。 - **Referencedata**:给出具体示例和参考数据。 ##### 6.3 `&lt;a4j:region&gt;` `&lt;a4j:region&gt;` 组件用于定义一个可单独渲染的区域。 - **...

    highcharts在richfaces下的实现

    xmlns:a4j="http://richfaces.org/a4j"&gt; &lt;h:head&gt; &lt;title&gt;Highcharts in RichFaces ['js/myhc.js']}"&gt; &lt;/h:head&gt; &lt;h:body&gt; &lt;rich:panel id="chartPanel"&gt; &lt;f:facet name="header"&gt;Highcharts Chart&lt;/f:...

    RichFaces的rich:dataTable组件内action actionListener不能使用

    这是我用来测试的一个工程,都不能在rich:dataTable中使用action actionListener 博文链接:https://insomniask.iteye.com/blog/111030

    RichFaces 4.3 Component Reference

    6. 容器组件:如`&lt;a4j:outputPanel&gt;`和`&lt;a4j:region&gt;`,它们用于帮助复杂的Ajax渲染和面板外观。 7. 验证组件:包括`&lt;rich:validator&gt;`和`&lt;rich:graphValidator&gt;`,用于客户端验证和对象验证,涵盖了基本用法、消息...

    关于rich:fileUpload和a4j:mediaOutput的使用

    在本文中,我们将深入探讨`rich:fileUpload`和`a4j:mediaOutput`这两个组件在实际开发中的使用,特别是在处理文件上传和媒体输出时的关键知识点。它们都是RichFaces库的一部分,这是一个强大的JavaServer Faces (JSF...

    RichFaces中的Ajax组件的使用指南

    6. **a4j:outputPanel**:定义一个可以被Ajax操作的面板。 7. **a4j:actionparam**:用于传递额外的参数给服务器。 8. **a4j:status**:显示Ajax请求的状态信息。 9. **a4j:loadBundle**:加载资源束,支持国际化。 ...

    richfaces技术文档

    - `&lt;a4j:outputPanel&gt;`:用于显示输出的面板组件,详细介绍其特性和用法。 七、结论 RichFaces框架凭借其强大的组件库、灵活的皮肤支持和优秀的AJAX特性,已成为现代Web开发不可或缺的一部分。通过对官方文档的学习...

    richfaces标签学习笔记

    在本文中,我们将深入探讨 RichFaces 标签的使用,特别是 `rich:componentControl` 和 `rich:modalPanel` 标签,以及 `inputNumberSlider` 和 `PanelBar` 组件。RichFaces 是一个功能丰富的 JavaServer Faces (JSF) ...

    Richfaces3.3.3常用组件使用手册,非常全

    Richfaces3.3.3常用组件使用手册 便于学习Richfaces和a4j和jsf框架 很好很实用

    Usage of A4J.Usage of A4J.Usage of A4J.

    A4J是RichFaces框架的一部分,允许开发者在JSF应用中实现异步数据更新,而无需刷新整个页面。 1. **&lt;a4j:keepAlive&gt;组件** `&lt;a4j:keepAlive&gt;`组件的核心作用是保持Managed Bean的状态,尤其是在`request`范围内的...

Global site tag (gtag.js) - Google Analytics