jqGrid遍历所有行及获取某一行数据
Posted firstcsharp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jqGrid遍历所有行及获取某一行数据相关的知识,希望对你有一定的参考价值。
$("#gridTable").find("tbody tr").not(".jqgfirstrow").each(function (i) { var inventoryQty = $(this).find(‘[aria-describedby="gridTable_InventoryQty"]‘).text(); alert(inventoryQty); if (inventoryQty == "") { hasInventoryQty = false; } });
not(".jqgfirstrow")表示排除第一行表头
以上是关于jqGrid遍历所有行及获取某一行数据的主要内容,如果未能解决你的问题,请参考以下文章
jqgrid 最近在用jqgrid,我想要实现列的拖拽功能,请问有人实现过吗