'ngx-bootstrap datepicker localization month is lowercase
Solution 1:[1]
The solution was pretty ez , I have just changed some css
.bs-datepicker-head .current span {
text-transform: capitalize;
}
.bs-datepicker-body table tbody tr td span {
text-transform: capitalize;
}
Solution 2:[2]
its working through css only Please try this in style.css file
div.bs-datepicker-body>table.months>tbody>tr>td>span {
text-transform: capitalize !important;
}
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 | Aidos Omurzakov |
| Solution 2 | LeeLenalee |




