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