By default, jquery datatable shows 10 by default and has
options : 10,25,50,100
How can I change these options?
In my case , aLengthMenu is not working. So i used this. And it is working.
jQuery('#dyntable3').dataTable({ oLanguage: {sLengthMenu: ""+ "100"+ "200"+ "300"+ "All"+ ""}, "iDisplayLength": 100 });
Thank you