{hero}

language.stateRestore.creationModal.order

Since: StateRestore 1.0.0

Set the text for the label of the order checkbox within the creation modal.
Please note - this property requires the StateRestore extension for DataTables.

Description

This string is displayed in the label next to the checkbox that allows toggling of order state saving within the creation modal that is shown when a state is being created.

The value set here is passed through the i18n() function.

Type

string

Description:

The string that will be displayed within the label next to the checkbox for the column ordering that is shown in the creation modal when enabled within stateRestore.creationModal.

Default

  • Value: Sorting

Example

Change text of the order checkbox label:

new DataTable('#myTable', {
	language: {
		stateRestore: {
			creationModal: {
				order: 'Column Sorting:'
			}
		}
	},
	layout: {
		topStart: {
			buttons: [
				{
					extend: 'createState',
					config: {
						creationModal: true,
						toggle: {
							order: true
						}
					}
				},
				'savedStates'
			]
		}
	}
});

Related

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