searchPanes.i18n.countFiltered
Set the message to be displayed in the count column when searching.
Please note - this property requires the SearchPanes extension for DataTables.
Description
SearchPanes will set the count column to display the total number of different values visible in the column when no filtering is taking place.
SearchPanes replace two strings when creating the output for the count column: {shown}
is the count for each different value that is currently displayed in the DataTable, {total}
is the total count for each different value that is in the DataTable. When no filtering is taking place, {total}
and {shown}
will be the same value.
This message will not be displayed if searchPanes.viewTotal
is not set to be true
.
This option will default to the value given by language.searchPanes.countFiltered
, which should generally be preferred over this option as the language strings can be loaded by Ajax and shared for the whole table, but if needed, this option is available to override that on a per instance basis.
Type
string
- Description:
searchPanes.i18n.countFiltered
changes what will be displayed in the count column if thesearchPanes.viewTotal
option is set to true and filtering is taking place.
Default
- Value:
{shown} ({total})
The default value for the searchPanes.i18n.countFiltered
parameter is {shown} ({total})
.
Example
Change messages for viewTotal::
new DataTable('#myTable', {
layout: {
top1: {
searchPanes: {
viewTotal: true,
i18n: {
count: '{total} found',
countFiltered: '{shown} ({total})'
}
}
}
}
});
Related
The following options are directly related and may also be useful in your application development.