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