forked from CIT/Vmeda.Online
10 lines
761 B
HTML
10 lines
761 B
HTML
<span *ngIf="!isShowOrListMode()" [formGroup]="form">
|
||
<span *ngIf="mode == 'edit'" [core-mark-required]="field.required" class="core-mark-required"></span>
|
||
<ion-select [formControlName]="'f_'+field.id" [placeholder]="'addon.mod_data.menuchoose' | translate" [selectOptions]="{title: field.name}" interface="action-sheet">
|
||
<ion-option value="">{{ 'addon.mod_data.menuchoose' | translate }}</ion-option>
|
||
<ion-option *ngFor="let option of options" [value]="option">{{option}}</ion-option>
|
||
</ion-select>
|
||
<core-input-errors *ngIf="error && mode == 'edit'" [control]="form.controls['f_'+field.id]" [errorText]="error"></core-input-errors>
|
||
</span>
|
||
|
||
<span *ngIf="isShowOrListMode() && value && value.content">{{ value.content }}</span> |