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 5957067
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T18:20:53+00:00 2026-05-22T18:20:53+00:00

jqGrid is created in web page. If page width is decreased, rightmost columns are

  • 0

jqGrid is created in web page. If page width is decreased, rightmost columns are no more accessible.
How to add horizontal scrollbar to jqGrid so that if page width is small, jqGrid can scrolled
horizontally to allow access to all columns ?

          grid.jqGrid({
            url: '<%= ResolveUrl("~/Grid/GetData?_entity=Strings")%>',
            datatype: "json",
            mtype: 'POST',
            scroll: 1,
            autoencode: true,

            height: 350,
            autowidth: true,
  • 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-05-22T18:20:53+00:00Added an answer on May 22, 2026 at 6:20 pm

    You can try a similar approach but in this case you’ll make use of the grid’s scrollbars instead of the div overflow.

    The idea is to resize the grid itself causing it to show scrollbars if its bouderies are smaller than its content. For this to work correctly the columns must have the option fixed:true otherwise they will resize themselfs to fit the grid’s width.

    Declare the DOM as follows:

    <div id="grid1container" style="width: 100%;">
        <table id="grid1"></table>
        <div id="grid1pager"></div>
    </div>
    

    Then add the javascrip code to the page:

    $(window).resize(function () { ResizeGrid1() });
    function ResizeGrid1() {
        $('#grid1container').height($(window).height() - 55);
    
        $('#grid1').jqGrid()
            .setGridWidth($('#grid1container').width() - 2)
            .setGridHeight($('#grid1container').height());
    }
    

    Here I’m manipulating the grid’s height too, if you don’t want it just remove the setGridHeight line.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

With jqGrid if width of columns are not specified, they share the width of
I'm trying to add the jVal attribute to a textbox that I created in
i have an asp.net-mvc web page and i am using jqgrid on the front
We've created a jqGrid TreeGrid that represents a filesystem, where branches are folders and
I have a jqGrid on a page and users can click a button to
I'm using jqgrid tree grid with the following configuration colModel : [ { name:'id',width
I am looking to drag a row from the jqGrid I have created and
I am trying to implement jqgrid v3.7 in my webapplication created using cakephp v1.3.
I want to add an event handler to jqGrid (for the onSelectRow event) but
I'm using jqGrid to build a custom inline entry widget on a page. The

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.