How to display the processing message inside of the table vs above?

How to display the processing message inside of the table vs above?

maykinomaykino Posts: 10Questions: 2Answers: 0

Hi, please take a look at the following example: http://screencast.com/t/0G64UYLXCPkK

The processing message shows up above the table however I want it to appear similar to this example:

http://datatables.net/release-datatables/examples/server_side/defer_loading.html

This is how initiate the script:

[code]
$('#data-table').dataTable({
'bAutoWidth': false ,
responsive: true,
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"aoColumnDefs": [
{"bSortable": false, "aTargets": [0, 1, 2, 3, 4, 5, 6, 7, 8]},
{ "sWidth": "330px", "sClass":"text-center", "aTargets": [ 8 ] },
],
"processing": true,
"bServerSide": true,
//"sDom": 'R<"H"lf>t<"F"ip>',
"sDom": '<fl>rt<"clear"i><"F"p>',
"sAjaxSource": "employees/display_employees_json"
});
[/code]

This discussion has been closed.