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