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.
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.
上述问题的答案是,当您单击行时,您将获得每行的唯一值,我们需要从中获取 id 并使用 jQgrid 函数。
通过getRowData
我们可以获得该行列的值。
示例示例粘贴在下面:
var reqlaborId = jQuery("#list1").jqGrid('getRowData', id);
reqlaborId = reqlaborId.ahcc_laborcan_header_id;
这对我来说很好......
var newKey=jQuery("input[name='key']").val();
where 'key' is name of column
或者
要不然..
我之前所做的更简单.. 将所需数据附加到列中的链接中作为 queryString.. 例如 index.php?id=123 如果它可以为你工作..