Exporting tables while using server-side processing

Exporting tables while using server-side processing

Keyser_SozeKeyser_Soze Posts: 22Questions: 0Answers: 0
edited May 2011 in TableTools
Good morning!

I'm using server-side processing and i'd like to export my table to Excel. The probleme is that this tool export only the shown data.

Is it possible to export all data from my table while using server-side processing.
How can i do that?

Thanks :)

Replies

  • alexsiagianalexsiagian Posts: 5Questions: 0Answers: 0
    hi keyser,

    you have to change 'bServerSide' to false,
    [code]"bServerSide": false[/code]
  • Keyser_SozeKeyser_Soze Posts: 22Questions: 0Answers: 0
    Hi alex,

    Thanks for the answer, i'll try this :)

    have a good day.
  • Keyser_SozeKeyser_Soze Posts: 22Questions: 0Answers: 0
    It doesn't work because bServerSide configure DataTables to use server-side processing.
    When i change it to false, data are not loaded from the server.

    any suggestions?

    thanks
  • alexsiagianalexsiagian Posts: 5Questions: 0Answers: 0
    but it's work for me ...
    i'm using datatable v1.7.6 and TableTools v.2.0.1

    [code]
    "bProcessing": false,
    "bServerSide": false,
    "sAjaxSource": "server_processing.php"
    [/code]
  • allanallan Posts: 61,438Questions: 1Answers: 10,049 Site admin
    Please see this thread: http://datatables.net/forums/comments.php?DiscussionID=5129

    Allan
  • Keyser_SozeKeyser_Soze Posts: 22Questions: 0Answers: 0
    Thanks allan and alexsiagian
    I'll check that :)
This discussion has been closed.