ion-datetime open programmatically code example
Example: ion-datetime open programmatically
and then in your code
...
//first create a reference to the datetime control:
@ViewChild('dateTime') sTime;
...
//then add your event code:
openStart()
{
this.sTime.open();
}