language.stateRestore.removeTitle
Since: StateRestore 1.0.0
Set the title shown in the StateRestore remove modal.
Please note - this property requires the StateRestore extension for DataTables.
Description
This string is displayed as a title within the remove modal which confirms that a user wants to remove the given state.
Type
Default
- Value:
Remove State
Example
Change remove confirmation modal title:
$(document).ready(function() {
$('#example').DataTable( {
language: {
stateRestore: {
removeTitle: 'Remove'
}
},
buttons: [ 'createState', 'savedStates' ],
dom: 'Bfrtip'
});
});
Related
The following options are directly related and may also be useful in your application development.