i18n.next
Since: DateTime 1.0.0
String to use in the next button.
Please note - this property requires the DateTime extension for DataTables.
Description
This value is used in the next button to move between months in DateTime.
Type
string
The string that is used in the next button.
Default
- Value:
'Next'
As default 'Next'
is the text used within the next button.
Example
Change the value for i18n.next
:
$(document).ready(function () {
new DateTime(document.getElementById('test'), {
i18n: {
next: '>'
}
});
});