如何在没有导航器的情况下删除和插入行
我正在将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用以下示例:
其中
invid
,invdata
,note
,amount
,tax 和
total
是列名称,#grid_id
是要添加数据的 jqGrid 的 ID,其中
rowid
是您要添加的行的 ID想要删除这些方法的文档在这里
触发添加/删除行是这确实是您的选择 - 您可以有一个添加按钮,然后提示用户输入列数据 - 然后将数据添加到表中......
Use the following as an example :
where
invid
,invdata
,note
,amount
,tax
andtotal
are column names and#grid_id
is the ID of your jqGrid to add data andwhere
rowid
is the ID of the row you want to removeDocs 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 ....