hidden row with AJAX source?
hidden row with AJAX source?
Hi All,
I am trying to achieve something similar to the example here (http://www.datatables.net/examples/api/row_details.html) but using an AJAX source, for example:
[code]
oTable = $('#dbResults').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "dbresults_proc.php",
"aoColumns": [
{ "bSortable": false },
null, null, null, null, null, null
],
"aaSorting": [[1, 'asc']],
} );
[/code]
i'm not having much luck however, and was wondering if anyone could point me in the right direction about how I could go about getting something similar to the original example ( http://www.datatables.net/examples/api/row_details.html ) working but with an ajax source.
many thanks for any help in advance
I am trying to achieve something similar to the example here (http://www.datatables.net/examples/api/row_details.html) but using an AJAX source, for example:
[code]
oTable = $('#dbResults').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "dbresults_proc.php",
"aoColumns": [
{ "bSortable": false },
null, null, null, null, null, null
],
"aaSorting": [[1, 'asc']],
} );
[/code]
i'm not having much luck however, and was wondering if anyone could point me in the right direction about how I could go about getting something similar to the original example ( http://www.datatables.net/examples/api/row_details.html ) working but with an ajax source.
many thanks for any help in advance
This discussion has been closed.