chrisdavies / tiny-date-picker

A small, modern, dependency-free date picker
https://chrisdavies.github.io/tiny-date-picker/
415 stars 88 forks source link

How to switch to german Format DD.MM.YYY #141

Open SGD-DEV opened 9 months ago

SGD-DEV commented 9 months ago

How to switch en-GB to de-DE
from MM/DD/YYYY 11/15/2023
to DD.MM.YYYYY 15.11.2023

in this Function?

format: function (dt) { return (dt.getMonth() + 1) + '.' + dt.getDate() + '.' + dt.getFullYear(); },

Or other way?