3

I am new to JQgrid and am unsure how to handle this use case.

When a user clicks on a link in a specific row in jQgrid I need to get the row data with a separator.

4

3 回答 3

1

上述问题的答案是,当您单击行时,您将获得每行的唯一值,我们需要从中获取 id 并使用 jQgrid 函数。

通过getRowData我们可以获得该行列的值。

示例示例粘贴在下面:

var reqlaborId = jQuery("#list1").jqGrid('getRowData', id);
reqlaborId = reqlaborId.ahcc_laborcan_header_id;

这对我来说很好......

于 2011-06-23T09:29:10.857 回答
1
var newKey=jQuery("input[name='key']").val();

where 'key' is name of column

于 2013-09-30T06:35:11.703 回答
1

从 jqGrid 中检索原始行数据

或者

从 jqGrid 中检索选定的行

要不然..

我之前所做的更简单.. 将所需数据附加到列中的链接中作为 queryString.. 例如 index.php?id=123 如果它可以为你工作..

于 2011-04-21T09:36:12.597 回答