'How to change Date format (dd-mmm-yyyy) in bootstrap datepicker
Solution 1:[1]
You can achieve this by using format option of bootstrap datepicker
$(function () {
$('.datepicker').datepicker({
format: 'd-M-yyyy'
});
});
d: Numeric date
M: Abbreviated month names
yyyy: 4-digit years
Solution 2:[2]
Use this:
format: "DD MMM YYYY"
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | |
Solution 2 | Lucas Cash Hlongwane |