JSF 延迟组件的渲染
我正在使用 JSF/2.0 和 vanilla Mojarra。
我在屏幕上加载了一个客户端列表,屏幕加载 10 秒后,我想在每个客户端名称旁边放置一个单独的美元值。
我正在考虑扩展现有的 JSF 组件来执行此操作。最好的方法是什么?
杰格
I'm using JSF/2.0 with vanilla Mojarra.
I've got a list table of clients loading up on a screen, and 10 seconds after the screen loads, I want to put an individual dollar value next to each client name.
I'm thinking of extending an existing JSF component to do this. What's the best way to do this?
JG
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该调用必须来自客户端,因为标准 HTTP 协议不允许服务器端将内容推送到客户端。从 JavaScript 的
setTimeout()
函数开始。您可以使用纯 JS(甚至 jQuery)来进行更改。如果需要调用 JSF 操作,请调用
jsf.ajax.request()
函数。The call has to come from the client side since the standard HTTP protocol doesn't allow the server side to push stuff to the client side. Start with JavaScript's
setTimeout()
function.You could use plain JS (or even jQuery) to do the changes. If you need to invoke a JSF action, call the
jsf.ajax.request()
function.