0
billyteng created
- What is your product version? 10.1.0
- What is your product type (Angular or MVC)? Angular
- What is product framework type (.net framework or .net core)? .net Core
I want to show datetime dd/MM/YYYY in
<input
class="form-control m-input"
id="MinRequestDateFilter"
name="MinRequestDateFilter"
type="datetime"
bsDatepicker
datePickerLuxonModifier
placeholder="{{ l('From RequestDate') }}"
[(ngModel)]="minRequestDateFilter"
/>
I have type luxonFormat: "F" and luxonFormat: "dd/MM/YYYY". It is not ok. My project use dd/MM/YYYY format datetime. It is showing only MM/dd/YYY fomat.
1 Answer(s)
-
0
Hi,
Could you try
dd/MM/yyyy
? You can also take a look at https://moment.github.io/luxon/docs/manual/formatting if you haven't.