I believe this may help some folks, I had been trying to achieve the Paging control option for an "All" option after finding this is not a built-in feature. I think my code addresses the paging option cleanly with no extra toolbar buttons. Please review and correct if I'm wrong, or share for the community. Thanks!
var gridSample = $("#divGrid").pqGrid({
title: "Frank Z. sample",
pagemodel: {type: "local", rPP: 25},
dataModel: datModel,
colModel: colModel,
refresh: function (ui) {
var $pager = this.pager().widget();
if ($pager && $pager.length) {
var nAll=( $pager.pqPager("option", "totalRecords") );
$pager.pqPager( "option", "rPPOptions", [10,25,nAll] );
$($pager).find("select:last-of-type").find("option:last-of-type").html("All");
}
});