Some noob questions
Some noob questions
indapublic
Posts: 2Questions: 0Answers: 0
Good day. I have some questions, but I can't find information in examples:
1) How I can catch Sort event?
2) How I can to modify visible rows (I want to create own section "Show N entries")
Thank you
1) How I can catch Sort event?
2) How I can to modify visible rows (I want to create own section "Show N entries")
Thank you
This discussion has been closed.
Replies
$('#myTable').on( 'sort', function () {...} );
> 2) How I can to modify visible rows (I want to create own section "Show N entries")
Use the fnLengthChange plugin ( http://datatables.net/plug-ins/api#fnLengthChange )
Allan