Get row count of jQuery Grid
Get jqGrid total row count
<script>var rowCount = $("#gridName").getGridParam("reccount");
alert(rowCount);</script>
For older versions of jqGrid this should work
<script>var rowCount = jQuery("#gridName").jqGrid('getGridParam', 'records');
alert(rowCount);</script>
Related Posts