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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T04:38:35+00:00 2026-05-16T04:38:35+00:00

I’ve got a JQGrid that needs to scroll. It works fine in Firefox, but

  • 0

I’ve got a JQGrid that needs to scroll. It works fine in Firefox, but in IE6, the grid stays stationary while the rest of the content scrolls underneath it.

What might be a complicating factor is that the grid is inside tabs, inside a dialog.

I’ve googled all over the place, but I can’t find a solution for this problem, so I turn to Stackoverflow. Does anyone here know what could cause this behavior?

I’m using jqgrid 3.5.3, should that matter.

  • 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-16T04:38:35+00:00Added an answer on May 16, 2026 at 4:38 am

    I had this same issue with IE6. it took me a while to fix but here is my solution, I hope it works for others.

    You need to add 2 items to your pager section on the JQGrid where you define the add, edit, delete etc attributes.

    1. scroll: 1 – This tells the dialog to scroll
    2. afterShowForm: function(form) { form.css(“height”, “300px”); } – This fixes some draw issue with IE6 which again forces the dialog to scroll.

    You need both of these together if you want the dialog to scroll and also remove any existing height attribute from the section too. You don’t have to create the form.css file, at least I didn’t, it just works as is.

            { add: false, edit: true, del: false, refresh: true, search: true }, //general options
            {
            //Options for the Edit Dialog
                editCaption: 'Edit Data',
            width: 500,
            modal: true,
            scroll: 1,
            closeAfterEdit: true,
            onclickSubmit: function(eparams) {
                var sr = jQuery("#MyGridTbl").getGridParam('selrow');
                var currentRow = jQuery("#MyGridTbl").getRowData(sr);
                return { Id: currentRow.Id };
            },
            afterShowForm: function(form) { form.css("height", "300px"); } 
        },
            {
            },
            {
            },
            {} //Search options
        );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.