stack over
stack over

Reputation: 65

Ionic time picker not displaying instead displaying date picker

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

Answers (2)

Ravi Ashara
Ravi Ashara

Reputation: 1196

<ion-datetime placeholder="Select Time" displayFormat="hh:mm A"></ion-datetime>

Upvotes: 0

Janitha Rasanga
Janitha Rasanga

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

Related Questions