我在下面有这个:
<a4j:form>
<h:inputText id="name" value="#{someBean.item.name}" styleClass="medium-field" onclick="if (this.value == 'Name') this.value = ''" onblur="if (this.value == '') this.value = 'Name'" />
<a4j:commandButton action="#{someBean.find}" styleClass="bt-find" reRender="someFields"/>
</a4j:form>
当我在名字上键入内容并按Enter键时,它会刷新页面并且不会给我带来任何结果。 如果我将其更改为h:commandButton它可以正常工作。你们有什么想法我怎样才能让它与a4j一起工作?如果不是a4j,那就是一种看起来像a4j的方式。
感谢。
答案 0 :(得分:0)
另一个试图与我同时解决问题的人添加了“type = submit”并且它有效。
<a4j:commandButton type="submit" action="#{someBean.find}" styleClass="bt-find" reRender="someFields"/>