searchPanes.i18n.loadMessage
Add internationalisation to the message shown when the panes are loading.
Please note - this property requires the SearchPanes extension for DataTables.
Description
This option is an alias to searchPanes.i18n.loadMessage
, which should be preferred when using DataTables 2+. It can be used to configure SearchPanes regardless of how the panes are inserted into the document (layout
or searchPanes
).
Please refer to the documentation for searchPanes.i18n.loadMessage
for full details of this option.
Type
string
- Description:
The
searchPanes.i18n.loadMessage
is displayed to the user in the SearchPanes container when the panes are loading and have not yet been displayed. This is typically only seen for large data sets or when using server-side processing.
Default
- Value:
Loading Search Panes...
Example
Alter SearchPanes Loading Message:
new DataTable('#myTable', {
layout: {
top1: 'searchPanes'
},
searchPanes: {
i18n: {
loadMessage: 'Loading filtering options...'
}
}
});