Author Topic: paging controls not displayed  (Read 1688 times)

marvinelder

  • Pro Deluxe
  • Newbie
  • *
  • Posts: 2
    • View Profile
paging controls not displayed
« on: January 02, 2020, 02:12:38 am »
I set up a pqGrid that included local paging.  I set 'showBottom:true'.  The result is a grid of all rows, but no controls are displayed. Below are my pqGrid elements:

 pqGridObject = $("grid_array").pqGrid({
     width: 900,
     height: 100,
     collapsible: false,
     pageModel: {type:"local", rPP: 20, strRpp: "{0}", strDisplay:"{0} to {1} of {2}" },
     selectionModel: { swipe: true },
     dataModel: dataModel,
     colModel: columnmodel,
     showBottom:true,
     wrap: false, hwrap: false,
     numberCell: { show: false, resizable: true, title: "#" },
     resizable: true
 });


« Last Edit: January 02, 2020, 03:21:01 am by marvinelder »