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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T17:33:14+00:00 2026-06-03T17:33:14+00:00

I have an AJAX call to sharepoint (shown below). function GetProductIDSforActiveQuote() { var arr

  • 0

I have an AJAX call to sharepoint (shown below).

function GetProductIDSforActiveQuote() {
var arr = new Array();
$().SPServices({
    operation: "UpdateListItems",
    listName: "Quotes",
    ID:quoteID,
    completefunc: function (xData, Status) {
      $(xData.responseXML).SPFilterNode("z:row").each(function() {
        arr = $(this).attr("ows_Products").split(',');
      });
    }
  });
return arr;
}

I’m trying to return an Array, but get an empty array at the end. I can verify by putting a console log inside the completefunc block, that values are being returned properly.

  • 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-03T17:33:15+00:00Added an answer on June 3, 2026 at 5:33 pm

    AJAX calls are asynchronous. This means that by the time you hit the line return arr, the completeFunc hasn’t necessarily been invoked yet.

    Could you modify the code so it takes a callback function which is provided the array? Like this:

    function GetProductIDSforActiveQuote(callback) {
        // other details omitted
        completefunc: function (xData, Status) {          
            arr = // your code
            callback(arr); // <- here's the difference.
          };        
    }    
    

    In the callback function, you could then process the array however you needed.

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

Sidebar

Related Questions

I have this ajax call to a doop.php . function doop(){ var old =
I have an ajax call that fires multiple times but is called once. function
The problem is the following. We have lots of ajax call via $.ajax function.
I have an AJAX call that returns some JSON like this: $(document).ready(function () {
I have 3 ajax call in one function and checkAjaxCompletion which checks each ajax
I have an AJAX call to load a function once the page is loaded,
I have an ajax call as below: $.ajax({ type: GET, url: process.php, data: dataString,
I have this ajax call: $('.ajaxtrigger2').click(function(){ $('#target').load('xxx.html'); ... how to append a Loading msg
I have an ajax call handled with jquery like this: var GetAppointmentDate = {'DateInput'
I have an ajax call in my document ready function. But in about 1

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.