Primefaces 数据表:什么“onRowSelectUpdate=”显示“”方法?

发布于 2024-11-29 20:32:26 字数 106 浏览 0 评论 0原文

我正在使用 primefaces 数据表,并且我已经多次看到 onRowSelectUpdate 事件调用“display”?

“显示”是什么意思?它是组件的公共方法还是其他什么?

I'm using the primefaces datatable and I've seen many times the onRowSelectUpdate event calling "display"?

What "display" means? is it a public method of the component or something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一城柳絮吹成雪 2024-12-06 20:32:26

它指的是每当您选择一行时将进行 ajax 更新的组件的 ID。例如,细节显示。

<p:dataTable id="mytable" onRowSelectUpdate="mydisplay">
    ...
</p:dataTable>
...
<p:someComponent id="mydisplay">
    <p>This component will be ajax-updated whenever a row is selected.
</p:someComponent>

It refers the ID of the component which is to be ajax-updated whenever you select a row. For example, a detail display.

<p:dataTable id="mytable" onRowSelectUpdate="mydisplay">
    ...
</p:dataTable>
...
<p:someComponent id="mydisplay">
    <p>This component will be ajax-updated whenever a row is selected.
</p:someComponent>
情释 2024-12-06 20:32:26

来自 PrimeFaces 用户指南,第 127 页:

选择一行后立即更新的组件。

听起来它的工作方式与 Ajax update 属性相同,但在数据表中选择一行时被激活。我自己从未使用过它,所以我没有任何代码示例可以分享。

From the PrimeFaces user guide, page 127:

Component(s) to update instantly after a row is selected.

Sounds like it works in the same way as the Ajax update attribute, but is activated when a row is selected in a data table. I've never used it myself so I don't have any code samples to share.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文