如何在 JSF richfaces 运行时插入多个输入框

发布于 2024-08-28 01:34:19 字数 145 浏览 5 评论 0原文

嗨,

假设我有一个输入框,它的值是手机号。当用户想要添加另一个手机时,用户将单击“加号”按钮。一旦他单击加号按钮,就会出现另一个文本框,用户应该允许输入另一个手机号码 我想要 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 技术交流群。

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

发布评论

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

评论(2

一抹淡然 2024-09-04 01:34:19

使用 rich:dataTablerich:dataList 迭代数组或集合,在每次迭代时显示一个输入框。 加号按钮应该每次都向数组或集合添加一个新项目并重新呈现表格或列表。

Make use of rich:dataTable or rich: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.

深爱成瘾 2024-09-04 01:34:19

您可以在您的托管 bean 中实例化组件。例如:

<a4j:commandButton value="+" action="#{yourBean.addCheckbox}" />

在你的 bean 中类似:

public void addCheckbox() {
     HtmlCheckBox checkBox = new HtmlCheckBox();
     parent.getChildren().add(checkBox); // parent is, for ex. HtmlPanelGroup
}

You can instantiated components in a managed bean of yours. For example:

<a4j:commandButton value="+" action="#{yourBean.addCheckbox}" />

and in your bean something like:

public void addCheckbox() {
     HtmlCheckBox checkBox = new HtmlCheckBox();
     parent.getChildren().add(checkBox); // parent is, for ex. HtmlPanelGroup
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文