如何在没有导航器的情况下删除和插入行

发布于 2025-01-08 05:48:16 字数 111 浏览 0 评论 0原文

我正在将 jqgrid 与本地数据一起使用,并且我知道如何编辑行,但我不知道如何删除或插入行。

对于插入,我需要在哪里放置addRowData?在某些事件处理程序中?

I am using jqgrid with local data and I know how to edit a row, but I can't figure out how to delete or insert a row.

For insert, where do I need to place addRowData? In some event handler?

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

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

发布评论

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

评论(1

↘人皮目录ツ 2025-01-15 05:48:16

使用以下示例:

var myfirstrow = {invid:"1", invdate:"2007-10-01", note:"note", amount:"200.00", tax:"10.00", total:"210.00"};
jQuery("#grid_id").addRowData("1", myfirstrow);

其中 invid,invdata,note,amount,tax 和 total 是列名称,#grid_id 是要添加数据的 jqGrid 的 ID,

jQuery("#grid_id").delRowData( rowid );

其中 rowid 是您要添加的行的 ID想要删除

这些方法的文档在这里

触发添加/删除行是这确实是您的选择 - 您可以有一个添加按钮,然后提示用户输入列数据 - 然后将数据添加到表中......

Use the following as an example :

var myfirstrow = {invid:"1", invdate:"2007-10-01", note:"note", amount:"200.00", tax:"10.00", total:"210.00"};
jQuery("#grid_id").addRowData("1", myfirstrow);

where invid,invdata,note,amount,tax and total are column names and #grid_id is the ID of your jqGrid to add data and

jQuery("#grid_id").delRowData( rowid );

where rowid is the ID of the row you want to remove

Docs for these methods are here

To trigger the adding / removing of rows is really your choice - you could have an add button and then prompt the user to enter the column data - then add the data to the table ....

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