Reputation: 65
I followed the document from Ionic, below is code given to display the time picker. But when clicked it's opening the data picket and no option to select time.
<ion-item>
<ion-label>Time</ion-label>
<ion-datetime displayFormat="hh-mm-A"></ion-datetime>
</ion-item>
What I'm missing please guide.
Upvotes: 0
Views: 1865
Reputation: 1196
<ion-datetime placeholder="Select Time" displayFormat="hh:mm A"></ion-datetime>
Upvotes: 0
Reputation: 1126
Try this
<ion-datetime display-format="h:mm A" picker-format="h:mm A" value="1990-02-19T07:43Z"></ion-datetime>
Upvotes: 1