i18n.multi.info

Since: Editor 1.5

Information text detailing the multi-row editing behaviour.
Please note - this property requires the Editor extension for DataTables.

Description

When Editor performs multi-row editing, if a field has multiple values (i.e. each row being edited has different values for that field) the i18n.multi.title string will be shown to let the end user know that the field has multiple values.

In addition to that simple message the value defined by this parameter will be shown immediately after that message for the field multi-value field only. This provides the ability to give detailed information about multi-row editing in Editor and its behaviour without repeating information unnecessarily.

Type

This option can be given in the following type(s):

Example

Use French language strings for the multi-row editing features:

var editor = new DataTable.Editor({
	ajax: '/api/staff',
	table: '#myTable',
	i18n: {
		multi: {
			title: 'Plusieurs valeurs',
			info: 'Les éléments sélectionnés contiennent des valeurs différentes pour cette entrée. Pour modifier et mettre tous les éléments pour cette entrée pour la même valeur, cliquez ou appuyez ici, sinon ils vont conserver leurs valeurs individuelles.',
			restore: 'Restaurer les valeurs multiples',
			noMulti:
				"Cette entrée peut être modifiée individuellement, mais ne fait pas partie d'un groupe."
		}
	}
});

Related

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