根本不渲染
这是我的 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.placeFromPostNR
when 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
oneevent
属性无效。它应该是事件
。The
onevent
attribute is invalid. It should beevent
.