tonytomov / jqGrid

jQuery grid plugin
www.trirand.com
2.84k stars 1.2k forks source link

Fixed the rowNum issue #962 #963

Closed avnish1306 closed 4 years ago

avnish1306 commented 4 years ago

When the grid type is tree grid and pagination is true then th "rowNum" which is number of rows in a page is getting changed to 10000 because there is a mistake in setTreeGrid function as if($t.p.rowTotal === null ) { $t.p.rowNum = 10000; } $t.p.rowNum =10000 should be $t.p.rowTotal = 10000;