Hi, I am trying to use the date time picker for my application which needs time specific to seconds. But looking at the documentation, there doesnt seem to be a seconds option in the picker.
Thanks!
<ion-label position="stacked">Sample Date and Time</ion-label>
<ion-input
[value]="record?.enteredDTM | date: 'MMM d, y, h:mm:ss a'"
id="enteredDTM"
class="ion-text-end"></ion-input>
<ion-popover trigger="enteredDTM">
<ng-template>
<ion-datetime
#enteredDTMPopOver
presentation="date-time"
[value]="formatISODate(record?.enteredDTM)"
(ionChange)="record.enteredDTM = formatISODate(enteredDTMPopOver.value); dateChanged = true"
locale="en-US" hour-cycle="h23" show-default-buttons></ion-datetime>
</ng-template>
</ion-popover>
</ion-item>