language.stateRestore.removeJoiner
Set the joiner used between states within the StateRestore remove modal.
Please note - this property requires the StateRestore extension for DataTables.
Description
This string is displayed in the confirmation modal for removal between the last two states in the list. The default is ' and '
, meaning that a typical ending to the language.stateRestore.removeConfirm
message would be ... State 1 and State 2?
.
Type
string
- Description:
The string that will be displayed between the last two states in the
language.stateRestore.removeConfirm
option.
Default
- Value:
and
Example
Change joiner text within remove confirmation modal to french:
$(document).ready(function() {
$('#example').DataTable( {
language: {
stateRestore: {
removeJoiner: ' et '
}
},
buttons: [ 'createState', 'savedStates' ],
dom: 'Bfrtip'
});
});
Related
The following options are directly related and may also be useful in your application development.