Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8874083
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T18:37:57+00:00 2026-06-14T18:37:57+00:00

I have the grid with paging. Every page has max 10 rows. if i

  • 0

I have the grid with paging. Every page has max 10 rows. if i have 3 records only i need to show 7 empty rows,

like excel sheet layout

Like this:

enter image description here

I got the solution :

loadComplete: function (data) {
                var pagesize = jQuery("#list5").jqGrid('getGridParam', 'rowNum');
                if (data.rows.length < pagesize) {
                    for (i = 0; i < pagesize - data.rows.length; i++) {
                        $("#list5").addRowData(i + 1, {});
                    }
                }
            }

If any other efficient solution is there then please let me know.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T18:37:58+00:00Added an answer on June 14, 2026 at 6:37 pm

    The problem with that is the page counts at the lower right are wrong: they include the blank rows. E.g. “View 91 to 100” when there are only 95 rows. Here’s a solution to that:

    loadComplete: function (data) {
      var grid = jQuery("#list5"),
        pageSize = parseInt(grid.jqGrid("getGridParam", "rowNum")),
        emptyRows = pageSize - data.rows.length;
    
      if (emptyRows > 0) {
        for (var i = 1; i <= emptyRows; i++)
            // Send rowId as undefined to force jqGrid to generate random rowId
            grid.jqGrid('addRowData', undefined, {});
    
        // adjust the counts at lower right
        grid.jqGrid("setGridParam", {
          reccount: grid.jqGrid("getGridParam", "reccount") - emptyRows,
          records: grid.jqGrid("getGridParam", "records") - emptyRows
        });
        grid[0].updatepager();
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have GridView and this grid has setup paging, but this paging not show
I'm using KendoUI Grid to show data. I have server paging working like a
I have a grid which I would like to show extra information with RowExpander
I have an Extjs Grid with a Paging toolbar. I need to pass the
I need to create my own grid which will have customized paging and sorting.
I have grid in my ASP.NET page (actualy it's Telerik RadGrid). There is GridButtonColumn
I have grid something like this: Ext.define('Exp.view.dashboard.Tv', { extend: 'Ext.grid.Panel', initComponent: function() { this.columns
Say you have a Grid which is having paging, editing and extra, I usually
I have datagridview with paging enabled. But when I want to move from page
I want to display some data in grid like control, in which every row

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.