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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T10:19:36+00:00 2026-05-16T10:19:36+00:00

I need to pre-load some values from a php script, I’m using a $.post

  • 0

I need to pre-load some values from a php script, I’m using a $.post call (jquery) as follows:

...    
var grade, section,from,until,user;


        function loadData(){
            $.post('procstring.php', {data: window.location.hash},
                   function(result){
                    grade = result.grade;
                    section = result.section;
                    from = result.from;
                    until = result.until;
                    user = result.user;
                    },
            'json');
        }

I need this values to render a jqgrid like this

$("#list").jqGrid({

            url: 'report.php?g=' + grade + '&s=' + section + '&f=' + from + '&u='+ until + '&u=' + user + '&report=1&searchString=null&searchField=null&searchOper=null',
            datatype: 'json',
            mtype: 'GET',
…

So I call the loadData before $("#list").jqGrid({… but jqgrid seems to be loaded before loadData, don’t know why, so I’m getting undefined values at the grade, section variables.

I’ve tried with jgrid events like beforeRequest and loadBeforeSend with no avail.

Any suggestion?. Thanks.

  • 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-16T10:19:37+00:00Added an answer on May 16, 2026 at 10:19 am

    Because AJAX is asynchronous. You need to put $("#list").jqGrid({... inside the success callback:

    // No need to define the variables outside
    $.post('procstring.php', { data: window.location.hash },
        function(result)
            var grade = result.grade;
            var section = result.section;
            var from = result.from;
            var until = result.until;
            var user = result.user;
    
            $("#list").jqGrid({...
    },
    'json');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to load (de-serialize) a pre-computed list of integers from a file in
I need some help understanding this bit of code pre { white-space: pre; white-space:
For example, I need to do some pre-processing of source files before compiling. How
Currently I am using a pretty basic function to pre-load images: function preload(arrayOfImages) {
So i need some support with my Ruby assignment, I'm not from US so
I need to pre load a complex layout so I can show the activity
I have a couple of pre-existing applications which I need to run in one
I have a strong use case for pre-allocating all the memory I need upfront
Need a map reduce function by mongo in php This my mongo structure [_id]
Need some regular expressions help. So far I have my code working to allow

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.