How to understand script structure
How to understand script structure
rubinjo13
Posts: 4Questions: 3Answers: 0
Hi!,
i have this working code now:
<script>
$(document).ready(function() {
$('#table_id').DataTable( {
"columnDefs": [
{
"targets": [ 7 ],
"visible": false,
"searchable": false
}
]
} );
} );
</script>
i like to add in the following option, but i don't know how to put it in the code:
"iDisplayLength": 25
Does somebody have a good starting point for me to understand how this script code works?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Hi rubinjo13, maybe this
Shay
Thanks! that works!