使用struts2创建包含表单的模态对话框

发布于 2024-09-06 01:37:41 字数 341 浏览 4 评论 0原文

在我的申请中,我的表格的一部分应该包含许多人的详细信息。 即

字段1 字段2 field3

现在是一个按钮 按钮上的人员详细信息

单击它会打开一个模式对话框,其中包含一个包含有关人员的 3 个字段的表单。当我单击“保存”时。 人员部分的详细信息应该更新...这应该在每次单击按钮时重复.. 我还需要对模式对话框上的字段进行验证。

在此过程中,为 field1、2、3 输入的数据应保持不变。

如何在 struts2 中执行此操作。我面临很多问题,有人可以帮我举一个简单的例子吗。

问候, Lalitha

还有一个问题是在模式对话框上有一个日期选择器。

In my application I have a part of form which should allow details of a n number of persons.
i.e,

Field1
Field2
field3

now a button
Details of persons

on button click it open a modal dialog box containg a form with 3 fields about person.When I click save.
the details of persons sections should update...This should repeat on every button click..
I also need validations for fields on modal dialog box.

Th data entered for field1,2,3 should remain same during the process..

How to do this in struts2.I am facing a lot of problems can some one help me with a simple example..

Regards,
Lalitha

One more problem is to have a date picker on modal dialog box..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

蓦然回首 2024-09-13 01:37:41

struts2 jquery 插件提供模式对话框

<sj:dialog 
    id="myeditdialog" 
    autoOpen="false" 
    modal="true" 
    title="Edit User"
/>

<s:url id="edit_user_url_1" action="edit"/><s:param name="id">1</s:param>
<sj:a 
    openDialog="myeditdialog"
    href="%{edit_user_url}"
>

<s:url id="edit_user_url_2" action="edit"/><s:param name="id">2</s:param>
<sj:a 
    openDialog="myeditdialog"
    href="%{edit_user_url_2}"
>

a modal dialog is available with struts2 jquery plugin

<sj:dialog 
    id="myeditdialog" 
    autoOpen="false" 
    modal="true" 
    title="Edit User"
/>

<s:url id="edit_user_url_1" action="edit"/><s:param name="id">1</s:param>
<sj:a 
    openDialog="myeditdialog"
    href="%{edit_user_url}"
>

<s:url id="edit_user_url_2" action="edit"/><s:param name="id">2</s:param>
<sj:a 
    openDialog="myeditdialog"
    href="%{edit_user_url_2}"
>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文