如何从 p:poll 迭代中调用 JavaScript 函数
How to call a JavaScript function form a p:poll iteration
我有 PrimeFaces 轮询间隔要在一分钟内更新 table 它正在禁用单选按钮。
<p:poll interval="60" update="sendServer" />
sendServer
是 table 的 ID,但是对于单选按钮选择,我有一个脚本可以在重新加载页面时调用。
function loadPageScripts() {
selectFirstRow(window.document.forms["send-blacklist-form"]);
}
与触发 Ajax 调用的所有 PrimeFaces 组件一样,您可以使用 onstart
、oncomplete
、onsuccess
和 onerror
属性.
参见:
我有 PrimeFaces 轮询间隔要在一分钟内更新 table 它正在禁用单选按钮。
<p:poll interval="60" update="sendServer" />
sendServer
是 table 的 ID,但是对于单选按钮选择,我有一个脚本可以在重新加载页面时调用。
function loadPageScripts() {
selectFirstRow(window.document.forms["send-blacklist-form"]);
}
与触发 Ajax 调用的所有 PrimeFaces 组件一样,您可以使用 onstart
、oncomplete
、onsuccess
和 onerror
属性.
参见: