jsf在字段模糊时填充表单字段
我是 jsf 的新手,无法找到如何做下一步: 我正在尝试创建一个包含 8 个字段(输入)的表单。用户在第一个输入中输入数据后,当他模糊该输入时,我想进行选择查询并获取所有其他字段值,然后用这些值填充输入。
我认为可以使用ajax来完成?我找不到任何执行此操作的示例。
如有任何帮助,我们将不胜感激,
提前致谢。
I'm new in jsf, and can't find how to do the next thing:
I'm trying to create a form with 8 fields (inputs). after the user enters data into the first input, when he onblur's that input I want to make a select query and get all other fields values and then fill the inputs with those values.
I think it's can be done using ajax? I can't find any example that does this.
Any help will be appriciated,
Thank's In Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,Ajax 可以用于此目的。您只需将
附加到第一个输入,该输入挂钩blur
事件,并有一个侦听器来准备所需的数据并最终重新渲染另一个输入输入。例如
与
Yes, Ajax can be used for this. You just attach a
<f:ajax>
to the first input which hooks on theblur
event and has a listener which prepares the desired data and finally re-renders the other inputs.E.g.
with