Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Primefaces 开发 glassfish 3.1。如果她为空,我需要隐藏一个数据表以显示错误消息。
但我无法在视图中隐藏 DataTable。
任何人都可以给我一个帮助我的例子吗?
谢谢
您可以使用样式属性:
style="display:block;"
当找到数据或:
style= "display:none";
当没有找到数据时。
您还可以使用 renderen 属性:
<p:dataTable rendered="#{bean.dataFound}"