JSF 2.0 动态属性,无需创建新组件
如何向未定义这些属性的组件添加新属性而不创建自己的属性。
我想做这样的事情
<h:commandButton actionListener="#{manager.saveNew}" value="#{i18n['School.create']}" secured="true" />
,或者至少是一种允许开发人员分配安全属性的方法。
有什么想法吗?
How do you add new attributes to a component that doesn't define those attributes without creating your own.
I want to do something like this
<h:commandButton actionListener="#{manager.saveNew}" value="#{i18n['School.create']}" secured="true" />
or at least, a way to allow the developer to assign the secure attribute.
any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在
h:commandButton
中使用f:attribute
。在您的操作方法中:
这是关于此的综合教程话题。
You can use
f:attribute
inside yourh:commandButton
.And in your action method:
Here is a comprehensive tutorial on this topic.