如何手动向jqGrid添加行数据?

发布于 2024-12-05 16:48:11 字数 289 浏览 0 评论 0 原文

我有一个 jqGrid 表,它运行良好。我使用 Spring 并通过 REST 交流一切。我想向我的 jqGrid 添加添加行功能。但是我不想使用 jqGrid 的默认按钮。这些是我用于添加新记录的变量:

userName
password
mail
admin

当用户单击我的页面上的按钮时,会出现一个弹出窗口,其中写入该字段名称。我希望当用户单击该弹出页面上的添加按钮时,应将新用户添加到 jqGrid 并且新数据当然应发送到服务器(发送到 REST URL)。

我该怎么做?

I have a jqGrid table and it works well. I use Spring and communicate everything via REST. I want to add adding row ability to my jqGrid. However I don't want to use default button of the jqGrid. These are my variables for adding a new record:

userName
password
mail
admin

When a user click a button on my page, a popup appears and there writes that field names. I want when user clicks add button at that popup page, a new user should be added to jqGrid and new data should be send to the server of course(to REST URL.)

How can I do that?

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

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

发布评论

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

评论(1

子栖 2024-12-12 16:48:11

您可以使用 addfunc 来实现“添加”按钮的自定义行为。在这种情况下,您将不得不自己完成几乎所有工作。例如,您应该使用 jQuery.ajax 自行将数据发送到服务器,并在其后重新加载网格,或者使用 addRowData 将新行添加到网格中。

You can use addfunc to implement you custom behavior of the Add button. In the case you will have to do almost all work yourself. You should send the data to the server yourself with respect of jQuery.ajax for example and reload the grid after it or add the new row to the grid with respect of addRowData.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文