i18n.close

Since: Editor 1.9.3

Close button title text.
Please note - this property requires the Editor extension for DataTables.

Description

The close icon that is shown by the main lightbox and bubble view (if styling is added to display it - it is not by default in bubble editing) has the value of this property added to it as a title attribute, to help with accessibility. Set to be an empty string to have no title.

Type

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

Example

Use French language strings for the close button:

var editor = new DataTable.Editor({
	ajax: '/api/staff',
	table: '#myTable',
	i18n: {
		close: 'Fermer'
	}
});