首页 > 解决方案 > JSF 组件寻址

问题描述

我想了解 jsf 中的这种寻址模式有什么不同。
例如我有这个 xhtml 结构:

<h:panelGroup id="parent">
    <h:panelGroup id="child">
        <!-- 
          and some other components .
        -->
    </h:panelGroup>
</h:panelGroup>      

此更新之间有什么区别?

   update="parent child"    
   update="parent:child"      
   update="parent,child"

标签: jsfprimefaces

解决方案


推荐阅读