有没有什么方法可以检查 jqgrid 中的单行或多行并从 jqgrid 中检索该数据?
我有一个包含一些数据的 jqgrid。我想要一个只有复选框的列,该复选框将选择整行或多行并在单击按钮时显示其内容。是否有任何网格属性可以这样做?另外,当我使用 getRowData 从 jqgrid 检索数据时,我获取带有“输入”标签的数据,因为行是可编辑的。有没有办法只检索纯数据?
i have a jqgrid with some data.I want a column that just have check boxes that will select the whole row or multiple row and display its content on a button click.is ther any grid property to do so? also when i retrieve data from the jqgrid using getRowData ,i am geting the data with the "input" tags as the rows are editable.Is ther a way to just retrieve the plain data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置网格时,请确保指定
“这将允许选择多行”。在按下按钮时调用的另一个函数中,您可以通过以下方式检索选定的行
然后获取每行的行数据,如下所示:
When setting up the grid, make sure you specify
This will allow multiple rows to be selected. In another function called when a button is hit, you can retrieve the selected rows by
Then get the row data for each row like this: