You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<app-generic-header
|
|
showBack="!getPassdirfromNotifiPage"
|
|
[updateDirection]="getPassdirfromNotifiPage"
|
|
[headerText]="headerTitle"
|
|
(trigger)="closeModal()"
|
|
>
|
|
</app-generic-header>
|
|
|
|
|
|
|
|
<ion-content padding>
|
|
<ion-item class="country dynamicField" lines="none">
|
|
<ion-label> {{ts.trPK('general','country')}}</ion-label>
|
|
<ion-select value="brown" okText="Okay" cancelText="Dismiss" [(ngModel)]="country">
|
|
<ion-select-option [value]="country.COUNTRY_CODE" *ngFor="let country of countries">{{country.COUNTRY_NAME}}</ion-select-option>
|
|
|
|
</ion-select>
|
|
</ion-item>
|
|
|
|
<ion-item class="country dynamicField" lines="none">
|
|
<ion-label> Effective Date</ion-label>
|
|
<ion-datetime [(ngModel)]="effectiveDate" min="1900" max="2100" displayFormat="DD/MM/YYYY " placeholder="MM/DD/YYYY"
|
|
></ion-datetime>
|
|
</ion-item>
|
|
<div #containerDiv id="containerDiv">
|
|
</div>
|
|
</ion-content>
|
|
|
|
<ion-footer>
|
|
<div class="centerDiv">
|
|
<ion-button class="addEitOkButton" color="customnavy" ion-button (click)="validateEITTransaction()">
|
|
{{'vacation-rule, next-label' | translate}}</ion-button>
|
|
</div>
|
|
</ion-footer> |