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