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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T16:34:00+00:00 2026-05-22T16:34:00+00:00

using JQuery Datatables and all is going well. I’ve worked out how to send

  • 0

using JQuery Datatables and all is going well.

I’ve worked out how to send addtional information from the client to the server. Now, I want to go back the other way.

So, how do I send extra information from the server to the client. I would have thought I could add an extra entry in the returned JSON and pull it out somewhere. One item I’d perhaps like to send back is how long the server took to handle the response. I can then show this information to the user.

Any help would be much appreciated. 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-22T16:34:01+00:00Added an answer on May 22, 2026 at 4:34 pm

    I think you got quite everything right. You just need to attach the additional data server side in the JSON object and then get it in “fnServerData”. You can add this code to the inizialization object:

            "fnServerData": function ( sSource, aoData, fnCallback ) {
                $.getJSON( sSource, aoData, function (json) {
    //Here you can do whatever you want with the additional data
                    console.dir(json);
    //Call the standard callback to redraw the table
                    fnCallback(json);
                } );
            }
    

    Server side you can add as many parameters as you want: Usually you have a json with 3 parameters “iTotalRecords” (total number of rows), “iTotalDisplayRecords” (Filtered total if you are using filters) and aaData (An associative array with the rows). If you add for example “iProcessingTime” (time it took to process server side) You could do:

            "fnServerData": function ( sSource, aoData, fnCallback ) {
                $.getJSON( sSource, aoData, function (json) {
    //take the processing time and put it in a div
                    $('#processingTime').html(json.iProcessingTime);
    //pass the data to the standard callback and draw the table
                    fnCallback(json);
                } );
            }
    

    Is this what you need?

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

Sidebar

Related Questions

I am using jquery datatables with server side C#/asp.net mvc3 processing. it all works
I am trying to build a table using jQuery Datatables. Everything works on all
I'm using the jQuery DataTables plugin to display data being returned from an AJAX
I am using jQuery UI tabbed content as well as datatables to render the
I am using jquery datatables to display data from a mysql database. When you
I am using the jQuery DataTables plugin. I would like to move the search
I have started using the DataTables plugin (v1.6.2) for jQuery (v1.4.2), and I would
Using jQuery, is there a way to select all tag that reference a specific
Using jQuery, how do I delete all rows in a table except the first?
I'm using jQuery DataTables in my .NET web application but how do I set

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.