Inside using another component app-custom-dropzone i have to send the [field] as aImage, bImage, cImage, dImage in loop [A, B, C, D] so im trying to convert it to lower case and append Image string to it.
I have tried [field]= "{{option | lowercase}}Image" - it print as {{option | lowercase}}Image but i expect aImage
also tried [field]= "option | lowercase" - it print as a but i need to append image string to it. How can i do it??
<div *ngFor="let option of optionList" class="p-2 bg-card shadow rounded overflow-hidden">
<h3 class="m-3"><b>Option {{option}}</b></h3>
<div class="grid md:grid-cols-4 sm:grid-cols-1 mb-2 m-3">
<app-custom-dropzone *ngIf="displayimage" [field]= "option | lowercase" [formData]="questionForm" (onFormGroupChange)="onChange($event)" ></app-custom-dropzone>
</div>
</div>