if you want to remove pagination and but want ordering of dataTable then add this script at the end of your page!
<script>_x000D_
$(document).ready(function() { _x000D_
$('#table_id').DataTable({_x000D_
"paging": false,_x000D_
"info": false_x000D_
} );_x000D_
_x000D_
} );_x000D_
</script>
_x000D_