Hi I have a following program. It works fine when iDisplayLength is 100. When we would like to change iDisplayLength as 200, the "Show ## entriesSearch" is empty. Is it be possible to customize "Show ## entriesSearch" in a way that entries over 200 shows ‘All’. Any idea to do so?
function newVasDataTable() {
var $newVasTable = $('#vas_table').dataTable({
"aoColumnDefs" : [ {"sSortDataType" : "dom-checkbox","aTargets" : [ 0 ]} ],
"iDisplayLength" : 100
});
return $newVasTable;
}
2
Answers
I partially found the customization here. Limit of displaying rows in DataTables but it does not say how to show 'All' when over 200.
Seems you are working with an old version of datatables, so this may help you :
More info can be found here