How can I show a child row?
How can I show a child row?
msmith1
Posts: 1Questions: 1Answers: 0
Hi
I am using the below code:
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#table').dataTable( {
"ajax": {
"url": "/server_scripts/order.php?id=<?php echo $_GET['id']; ?>",
"type": "POST"
},
"order": [[ 0, "desc" ]],
"info": false,
"ordering": false,
"paging": false,
"serverSide": true,
"searching": false
} );
} );
</script>
Can someone please tell me how I can get column 8 to show as a child row and always visable (no selector to hide/show it)?
Thanks,
Mark
This discussion has been closed.