根本不渲染

发布于 2024-12-17 09:11:03 字数 789 浏览 0 评论 0原文

这是我的 Facelet:

<h:inputText id="input" value="#{managedBean.runner.postnr}" maxlength="4" size="4">
    <f:ajax execute="@this" onevent="blur" render="output" />
</h:inputText>
<h:outputText id="output" value="#{managedBean.placeFromPostNR}"/>

当用户退出为 inputText 时,我尝试使用 managementBean.placeFromPostNR 中的值自动更新 outputText。但这根本不起作用。

这是我的 ManagedBean.placeFromPostNR 代码:

public String getPlaceFromPostNR(){
    return db.getPlaceFromPostNR(runner.getPostnr());
}

此方法从未被调用,有一些打印行作为测试。

我什至尝试设置 并设置 onevent="keyup"< /code> 检查我的方法是否给出错误。但这也行不通。

This is my Facelet:

<h:inputText id="input" value="#{managedBean.runner.postnr}" maxlength="4" size="4">
    <f:ajax execute="@this" onevent="blur" render="output" />
</h:inputText>
<h:outputText id="output" value="#{managedBean.placeFromPostNR}"/>

I'm trying to autoupdate outputText with a value from managedBean.placeFromPostNRwhen the user exit's the inputText. But this does not work at all.

Here's my managedBean.placeFromPostNR code:

public String getPlaceFromPostNR(){
    return db.getPlaceFromPostNR(runner.getPostnr());
}

This method is never invoked, have some printlines as test.

I've even tried with setting <h:outputText id="output" value="#{managedBean.runner.postnr}"/> and setting onevent="keyup" to check if my methods which gives the error. But this doesn't work either.

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

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

发布评论

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

评论(1

夏日落 2024-12-24 09:11:03

oneevent 属性无效。它应该事件

<f:ajax execute="@this" event="blur" render="output" />

The onevent attribute is invalid. It should be event.

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