{hero}

language.stateRestore.removeJoiner

Since: StateRestore 1.0.0

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:

new DataTable('#myTable', {
	language: {
		stateRestore: {
			removeJoiner: ' et '
		}
	},
	layout: {
		topStart: {
			buttons: ['createState', 'savedStates']
		}
	}
});

Related

The following options are directly related and may also be useful in your application development.