DataTables - Usage

PHOTO EMBED

Sat Nov 05 2022 17:18:06 GMT+0000 (Coordinated Universal Time)

Saved by @ziksonfly

   // POST data to server
   $(document).ready( function() {
     $('#example').dataTable( {
       "bProcessing": true,
       "bServerSide": true,
       "sAjaxSource": "xhr.php",
       "fnServerData": function ( sSource, aoData, fnCallback, oSettings ) {
         oSettings.jqXHR = $.ajax( {
           "dataType": 'json', 
           "type": "POST", 
           "url": sSource, 
           "data": aoData, 
           "success": fnCallback
         } );
       }
     } );
   } );
content_copyCOPY

http://legacy.datatables.net/usage/callbacks#fnServerData