{hero}

language.autoFill.fill

Since: AutoFill 2.0.0

Multi-fill selector message for the full fill fill type.
Please note - this property requires the AutoFill extension for DataTables.

Description

The full fill type will copy the data from the cell where the fill originated to all other cells. This option sets the message that will be shown when this fill type is available (which is always!).

Type

string

Description:

Message shown by the full fill type in the fill selector. This string can contain HTML for additional styling options.

Default

  • Value: Fill all cells with %d

Example

Set a fill type information message:

new DataTable('#myTable', {
	language: {
		autoFill: {
			fill: 'Fill all cells with the same value'
		}
	},
	autoFill: true
});