如何在 JSF richfaces 运行时插入多个输入框
嗨,
假设我有一个输入框,它的值是手机号。当用户想要添加另一个手机时,用户将单击“加号”按钮。一旦他单击加号按钮,就会出现另一个文本框,用户应该允许输入另一个手机号码 我想要 JSF richfaces 中的代码,请帮助我。
提前致谢 丛林黑客
HI,
suppose i have one input box which takes value for mobile no. and when the user wants to add another mobile no at that time user will click 'plus' button. as soon as he clicks the plus button another text box should appear and user should allow to enter another mobile number
i want code in JSF richfaces please help me out.
Thanks in advance
Jungle_Hacker
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
rich:dataTable
或rich:dataList
迭代数组或集合,在每次迭代时显示一个输入框。 加号按钮应该每次都向数组或集合添加一个新项目并重新呈现表格或列表。Make use of
rich:dataTable
orrich:dataList
to iterate over an array or collection, displaying an input box on every iteration. The plus button should add a new item to the array or collection everytime and rerender the table or list.您可以在您的托管 bean 中实例化组件。例如:
在你的 bean 中类似:
You can instantiated components in a managed bean of yours. For example:
and in your bean something like: