在中传递操作
有一些方法可以在
中传递操作。 我想编写带有“是”和“否”按钮的简单弹出窗口,并且我想在不同页面中重用此弹出窗口,这就是为什么我需要在按下“是”按钮时调用不同的操作。 有一种方法可以在
中使用
传递一些值:
<a4j:commandButton value="See details…" id="det"
reRender="popup_dataIdField, …">
<rich:componentControl for="popup"
operation="show" event="onclick" />
<a4j:actionparam name="message" assignTo="#{popupBean.message}"
value="#{myBean.message}" />
</a4j:commandButton>
但是有什么方法可以传递 action 吗?
There is some way to pass action in <rich:modalPanel>
. I want to write simple popup with "Yes" and "No" button, and I want to reuse this popup in different pages, that's why I need that different action was invoked when "Yes" button pressed. There is a way to pass some value in <rich:modalPanel>
with <a4j:actionparam>
:
<a4j:commandButton value="See details…" id="det"
reRender="popup_dataIdField, …">
<rich:componentControl for="popup"
operation="show" event="onclick" />
<a4j:actionparam name="message" assignTo="#{popupBean.message}"
value="#{myBean.message}" />
</a4j:commandButton>
But is some way to pass action ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当您使用 Facelets 时,请查看 Rick Hightower 的文章 并“传递动作”部分。 它与您使用的基本方法相同,但也在 bean 上传递方法。
例如:
然后在弹出窗口中:
请注意,您使用了#。
As you're using Facelets then look at Rick Hightower's article and the section "Passing Actions". It's the same basic method to what you've used, but also passing in the method on the bean.
Eg:
And then in the popup:
Note that you use the #.
我自己找到答案:)。 也许这会对某人有帮助。
我已经使用 Facelets 完成了此操作。 当我将弹出窗口包含到我的页面时,我将参数传递给它:
其中
thisPageBean
- 是来自调用的弹出窗口的 bean。然后在弹出窗口中我写道:
通过此我调用
thisPageBean.someAtion
。 所有的魔法都是${thisPageBean}
,它对我们来说是必要的$
,但不是#
。I find the answer by myself :). Maybe it will be helpful for somebody.
I've done this using Facelets. When I'm include popup to my page I pass parametr to it:
Where
thisPageBean
- is bean from what popup invoked.Then in my popup I wrote:
And with this I invoke
thisPageBean.someAtion
. All magic is${thisPageBean}
, it's is necessary to us$
but no#
.是的,我认为这样做没有任何问题。 如果需要,您可以使用我的代码:
基本上,模式面板中的输出将包含 TestBean 中的值
编辑(误解):
我相信您必须像这样定义模式面板:
并且在你的托管bean中,你必须使用java动态地将Children添加到你的模式面板中,如下所示:
Yes I dont see any problems with doing this. You can use my code if you want:
Basicly the output in the modal panel will contain the values in the TestBean
Edit (the misunderstanding):
I believe you will have to define your modal panel like this:
And in your managed bean you will have to addChildren to your modal panel dynamically with java like this: