|
|
|
|
@ -48,17 +48,17 @@
|
|
|
|
|
<ion-item lines="none" class="filed-container">
|
|
|
|
|
<select [(ngModel)]="depType" (change)="onSelectChange($event,1)" class="filed1" id="firstLabel"
|
|
|
|
|
placeholder="Select Department" type="text" required >
|
|
|
|
|
<option value="" selected>Select Department</option>
|
|
|
|
|
|
|
|
|
|
<option [value]="x.departmentId" *ngFor="let x of departTypeList"> {{x.departmentName}} </option>
|
|
|
|
|
<option value="" hidden selected>{{ts.trPK('userProfile','selectDep')}}</option>
|
|
|
|
|
<option [value]="x.projectDepartmentId" *ngFor="let x of departTypeList"> {{x.departmentName}} </option>
|
|
|
|
|
<!-- <option [value]="x.departmentId" *ngFor="let x of departTypeList"> {{x.departmentName}} </option> -->
|
|
|
|
|
</select>
|
|
|
|
|
</ion-item>
|
|
|
|
|
<label class="labels">{{ts.trPK('userProfile','RelatedSection')}}</label>
|
|
|
|
|
<ion-item lines="none" class="filed-container">
|
|
|
|
|
<select [(ngModel)]="secType" (change)="onSelectChange($event,2)" class="filed1"
|
|
|
|
|
selected="selected" placeholder="Select Sectiont" type="text" required>
|
|
|
|
|
<option value="" selected>Select Section</option>
|
|
|
|
|
<option [value]="x.sectionId"
|
|
|
|
|
<option value="" hidden selected>{{ts.trPK('userProfile','selectSec')}}</option>
|
|
|
|
|
<option [value]="x.departmentSectionId"
|
|
|
|
|
*ngFor="let x of sectionTypeList">
|
|
|
|
|
{{x.sectionName}} </option>
|
|
|
|
|
|
|
|
|
|
@ -68,8 +68,8 @@
|
|
|
|
|
<ion-item lines="none" class="filed-container">
|
|
|
|
|
<select [(ngModel)]="topicType" (change)="onSelectChange($event, 3)" class="filed1"
|
|
|
|
|
placeholder="Select Topic" type="text" required>
|
|
|
|
|
<option value="" selected>Select Topic</option>
|
|
|
|
|
<option [value]="x.topicId" *ngFor="let x of topicTypeList"> {{x.topicName}} </option>
|
|
|
|
|
<option value="" hidden selected>{{ts.trPK('userProfile','selectTopic')}}</option>
|
|
|
|
|
<option [value]="x.sectionTopicId" *ngFor="let x of topicTypeList"> {{x.topicName}} </option>
|
|
|
|
|
</select>
|
|
|
|
|
</ion-item>
|
|
|
|
|
</ion-list>
|
|
|
|
|
|