language.autoFill.increment
Since: AutoFill 2.0.0
Multi-fill selector message for the increment fill type.
Please note - this property requires the AutoFill extension for DataTables.
Description
This option provides the ability to customise the message that the increment fill type will show when it is available for a data fill.
Type
string
- Description:
Message shown by the increment fill type when it is available for the data fill. It should also include the HTML required for a number input to determine what the increment value should be.
Default
- Value:
Increment / decrement each cell by: >input type='number' value='1'<
Example
Set a fill type information message:
new DataTable('#myTable', {
language: {
autoFill: {
increment: 'Change each cell by: <input type="number" value="1">'
}
},
autoFill: true
});