i18n.create.title

Since: Editor 1.0

Create display title text.
Please note - this property requires the Editor extension for DataTables.

Description

This option defines the text that will be displayed in the title of the create form, explaining to the end user what the form is used for.

This option is only used as part of the create button that Editor makes available to the Buttons extension for DataTables. If you are not using Buttons, the language strings presented to the end user can be configured through the API methods such as title() and buttons().

For legacy installations using TableTools, the editor_create button type also makes use of this option.

Type

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

Example

Use French language strings for the create button:

var editor = new DataTable.Editor({
	ajax: 'php/staff.php',
	table: '#myTable',
	i18n: {
		create: {
			button: 'Nouveau',
			title: 'Créer nouvelle entrée',
			submit: 'Créer'
		}
	}
});

Related

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