tags:

views:

368

answers:

1

Hi, I would like to know how to get row count for jqGrid. I'm using rowNum: -1 so it displays all the rows. I tried using parseInt($("#grid").getGridParam("records"), 10) But it always returns 0.

Thanks for the help.

+1  A: 

Try:

$("#grid").getGridParam("reccount")
Justin Ethier