JSF 2:更改阶段侦听器上组件的呈现属性
大家好,
在 JSF 2 中,如何使用 PhaseListener 更改 ah:InputText 组件的渲染属性。
在渲染 jsf 页面之前,我必须验证 h:inputtexts 的所有 id,之后我将更改要渲染或不渲染的属性。
我说清楚了吗?
Hy guys,
In JSF 2 How can I change the rendered atribute of a h:InputText component using a PhaseListener.
Before the jsf page be rendered I have to verify all id of the h:inputtexts, and after that I will change the atribute to be rendered or not.
Am I clear?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 GET 请求,在渲染响应的前阶段尚未创建视图根,而在后阶段则为时已晚,因为响应已被渲染并发送到客户端。然而,视图根可在“预渲染视图”系统事件期间进行修改。
要使其运行,请在faces-config.xml中按如下方式注册:
On GET requests, the view root is not created yet during the before phase of the render response and during the after phase it's too late because the response is already been rendered and sent to the client. The view root is however available for modification during the "pre render view" system event.
To get it to run, register it as follows in
faces-config.xml
: