datatables.net-datetime
Version:
DateTime picker for DataTables.net
33 lines (28 loc) • 732 B
text/xml
<dt-option library="DateTime">
<name>i18n.next</name>
<summary>String to use in the next button.</summary>
<since>DateTime 1.0.0</since>
<type type="string">
<description>
The string that is used in the next button.
</description>
</type>
<default value="'Next'">
As default `'Next'` is the text used within the next button.
</default>
<description>
<![CDATA[
This value is used in the next button to move between months in DateTime.
]]>
</description>
<example title="Change the value for `i18n.next`"><![CDATA[
$(document).ready(function () {
new DateTime(document.getElementById('test'), {
i18n: {
next: '>'
}
});
});
]]></example>
</dt-option>