Santosh Kumar
Santosh Kumar

Reputation: 77

customizable date time picker in ionic2

enter image description hereI don't want to display date after selecting the date from date picker by using tag is it possible following is the code As is in the image i don't want to display the MAR 31,2017 is it possible??

    <ion-header>
      <ion-icon class="moreicon" name="more">
    <ion-datetime type="button" [(ngModel)]="myDate" (click)="get()"></ion-datetime>
  </ion-icon>
</ion-header>

Upvotes: 1

Views: 462

Answers (1)

Sampath
Sampath

Reputation: 65860

On your component page where just do as shown below.

.scss

 .ios,
 .md,
 .wp
     {
      .datetime-text{
         display: none;
    }
}

Upvotes: 1

Related Questions