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

  • Home
  • SEARCH
  • 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 90311
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:51:12+00:00 2026-05-10T22:51:12+00:00

I have a table style page with rows. Each row has a checkbox. I

  • 0

I have a table style page with rows. Each row has a checkbox. I can select all/many checkboxes and click ‘submit’ and what is does is a Jquery ajax call for each row.

Basically I have a form for each row and I iterate over all the checked rows and submit that form which does the jquery ajax call.

So I have a button that does:

       $('input:checked').parent('form').submit(); 

Then each row has:

            <form name='MyForm<%=i%>' action='javascript:processRow(<%=i%>)' method='post' style='margin:0px;'>                 <input type='checkbox' name='X' value='XChecked'/>                 <input type='hidden' id='XNumber<%=i%>' name='X<%=i%>' value='<%=XNumber%>'/>                 <input type='hidden' id='XId<%=i%>' name='XId<%=i%>' value='<%=XNumber%>'/>                 <input type='hidden' id='XAmt<%=i%>' name='XAmt<%=i%>' value='<%=XAmount%>'/>                 <input type='hidden' name='X' value='rXChecked'/>             </form> 

This form submits to processRow:

   function processRow(rowNum)    {         var Amount = $('#XAmt'+rowNum).val();         var XId = $('#XId'+rowNum).val();         var XNum = $('#OrderNumber'+rowNum).val();         var queryString = 'xAmt=' + '1.00' + '&xNumber=' + OrdNum + '&xId=' + xId;           $('#coda_'+rowNum).removeClass('loader');         $('#coda_'+rowNum).addClass('loading');           $.ajax({           url: 'x.asp',           cache: false,           type:  'POST',           data:  queryString,           success: function(html){             $('#result_'+rowNum).empty().append(html);             $('#coda_'+rowNum).removeClass('loading');             $('#coda_'+rowNum).addClass('loader');           }         });    } 

What I wanted to know is, from this is there a way I can tell if all my Ajax calls are complete. Reason being that want to enable/disable the submit button while all these calls are taking place.

Thanks and please note that I had to mangle my variable names due to the sensitivity of the application, so many of them may be duplicated.

  • 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. 2026-05-10T22:51:13+00:00Added an answer on May 10, 2026 at 10:51 pm

    The easy way

    The easiest way is to use the .ajaxStop() event handler:

    $(document).ajaxStop(function() {   // place code to be executed on completion of last outstanding ajax call here }); 

    The hard way

    You can also manually detect if any ajax call is still active:

    Create a variable containing number of active Ajax connections:

    var activeAjaxConnections = 0; 

    just before opening new Ajax connection increment that variable

    $.ajax({   beforeSend: function(xhr) {     activeAjaxConnections++;   },   url (...) 

    in success part check if that variable equals to zero (if so, the last connection has finished)

    success: function(html){   activeAjaxConnections--;   $('#result_'+rowNum).empty().append(html);   $('#coda_'+rowNum).removeClass('loading');   $('#coda_'+rowNum).addClass('loader');   if (0 == activeAjaxConnections) {     // this was the last Ajax connection, do the thing   } }, error: function(xhr, errDesc, exception) {   activeAjaxConnections--;   if (0 == activeAjaxConnections) {     // this was the last Ajax connection, do the thing   } } 

    As you can see, I’ve added also checking for return with error

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

Sidebar

Ask A Question

Stats

  • Questions 133k
  • Answers 133k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Generally the answer might be probably "it depends", but if… May 12, 2026 at 6:36 am
  • Editorial Team
    Editorial Team added an answer Sounds like you should have a look at curses ncurses… May 12, 2026 at 6:36 am
  • Editorial Team
    Editorial Team added an answer How about: Dim CC As New ClearCase.Application CC.Views(true, myRegionName) It… May 12, 2026 at 6:36 am

Related Questions

I have a page which is largely created by DOM script, which generates a
I need to create a table on a web page that has two rows.
I'm trying to get a HTML email to print a table at a lesser
I have the following table: <table> <tr> <td style=height: 7px; width: 7px> A1 </td>

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.