actionListener 中的参数

发布于 2024-11-14 20:11:17 字数 515 浏览 4 评论 0原文

我使用 JSF 1.2。如何将一些参数传递给在 a4j:support for h:inputText 中指定的事件上调用的 actionListener?

<h:inputText id="dateToText" value="#{flowScope.fileSearchCriteria.toDateStr}">
    <a4j:support event="onchange" reRender="datePanel1"    
      actionListener="#fileSearchCriteria.changeTextToDate}"  />
    <a4j:actionparam name="strxxx"                                
      assignTo="#{flowScope.fileSearchCriteria.strxxx}" value="#{resourceBundle.searchIn}"/>
</h:inputText>

I use JSF 1.2.How can I pass some parameters to actionListener which is called on the event specified in a4j:support for h:inputText?

<h:inputText id="dateToText" value="#{flowScope.fileSearchCriteria.toDateStr}">
    <a4j:support event="onchange" reRender="datePanel1"    
      actionListener="#fileSearchCriteria.changeTextToDate}"  />
    <a4j:actionparam name="strxxx"                                
      assignTo="#{flowScope.fileSearchCriteria.strxxx}" value="#{resourceBundle.searchIn}"/>
</h:inputText>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奈何桥上唱咆哮 2024-11-21 20:11:17

你所拥有的是正确的,但我会切换到action,而不是actionListner。我认为不能保证 a4j:actionparam 将在 actionListener 之前调用。但动作总是最后调用。

What you have is correct, but instead of actionListner, I would switch to action. I don't think there is guarantee that a4j:actionparam will be invoked before actionListener. But action will always be invoked last.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文