language.autoFill.fillHorizontal
Since: AutoFill 2.0.0
Multi-fill selector message for the horizontal fill fill type.
Please note - this property requires the AutoFill extension for DataTables.
Description
The horizontal fill type will copy the data from the first column in the selected cells to the other cells horizontally. This option sets the message that will be shown when this fill type is available.
Type
string
- Description:
Message shown by the horizontal fill type in the fill selector. This string can contain HTML for additional styling options.
Default
- Value:
Fill cells horizontally
Example
Set a fill type information message:
new DataTable('#myTable', {
language: {
autoFill: {
fillHorizontal: 'Copy values horizontally'
}
},
autoFill: true
});