I’ve solved using your suggestions:
1) **deliveries.html**
<ion-segment [(ngModel)]="docstatus" (ionChange)="segmentChanged()" >
2) **deliveries.ts**
import { Component,ChangeDetectorRef } from '@angular/core';
constructor(private cf: ChangeDetectorRef) {
// init data
}
segmentChanged()
{
this.cf.detectChanges();
}
Now the Segment component works again.
Thank you @bhann2 and @cadencity.
cld