javascript - How can I get the number of rows displayed in a jqGrid? - Stack Overflow

Maybe this information is out there and my Google-fu is failing me, however I can't seem to find t

Maybe this information is out there and my Google-fu is failing me, however I can't seem to find the answer. How can I get the number of rows being currently displayed in a jqGrid?

Every question and answer I've found on this topic tells you how to get either the total number of rows (displayed or not) or the number of rows loaded by an external service. Instead, I'm trying to get how many rows are being displayed in the current page of the jqGrid. One of my jqGrid attributes is rowList:[10,20,30], but I'm not sure how to access which one is selected myself.

All I want is how many rows are being currently dislpayed on each page of the jqGrid. The closest thing I've found so far has been this Q&A, but this displayed how many <tr>s there are and wasn't really what I needed.

Maybe this information is out there and my Google-fu is failing me, however I can't seem to find the answer. How can I get the number of rows being currently displayed in a jqGrid?

Every question and answer I've found on this topic tells you how to get either the total number of rows (displayed or not) or the number of rows loaded by an external service. Instead, I'm trying to get how many rows are being displayed in the current page of the jqGrid. One of my jqGrid attributes is rowList:[10,20,30], but I'm not sure how to access which one is selected myself.

All I want is how many rows are being currently dislpayed on each page of the jqGrid. The closest thing I've found so far has been this Q&A, but this displayed how many <tr>s there are and wasn't really what I needed.

Share Improve this question edited May 23, 2017 at 12:30 CommunityBot 11 silver badge asked Nov 19, 2012 at 20:39 asteriasteri 11.6k13 gold badges63 silver badges85 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 2
$('.ui-pg-selbox').val()

Tested on the latest jqGrid (4.4.1)

Of course, if you have more than jqGrid per page, you can use an wrapper to ensure that it is the one you're looking for.

$('#myjqGridWrapper .ui-pg-selbox').val()

Not sure whether it's the best way, but it gets the job done.

The space means a descendant selector, that is it looks for elements containing the class ui-pg-selbox which are descendant of an wrapper #myjqGridWrapper. That would require having a div or some other wrapper around your table.


UPDATE: Also, if you have the table ID or a reference, you can use a more sturdy way of querying its jqGrid instance's .ui-pg-selbox:

$('#jqgridTableId').closest('.ui-jqgrid').find('.ui-pg-selbox').val()

The following will return you the number of displayed rows on a grid's page:

$('#myjqGridWrapper').getGridParam('reccount');

You shouldn't rely on the view for information. You should pull this information out of the JQGrid model. You can do so by calling the getGridParam method like so:

var rowNum = jqGrid.getGridParam('rowNum');

See here for more information: http://www.trirand./jqgridwiki/doku.php?id=wiki:options

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745517141a4631067.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信