在primefaces中如何扫描多个组件

时间:2014-05-07 17:07:33

标签: primefaces components

在其中一篇博客中,我看到可以在ajax调用中扫描组件,我想知道如何使用p:component方法扫描多个组件

<p:ajax listener="#{providerSelectBean.onRowSelect}"  
update=":#{p:component('output')}" event="rowSelect"/>

谢谢&amp;感谢您的回复。

1 个答案:

答案 0 :(得分:0)

您最好使用PrimeFaces选择器

update="@(.ui-panel)"

这会更新任何有.ui-panel作为类的内容,请参阅http://www.primefaces.org/showcase/ui/selectors.jsf

How do PrimeFaces Selectors as in update="@(.myClass)" work? 给出了一个很好的例子

并且:How to find out client ID of component for ajax update/render? Cannot find component with expression "foo" referenced from "bar"