My current setup includes a multi-select drop-down with checkbox default. Now, I am looking to incorporate a text field next to the selected value.
Initially, I attempted adding plain HTML code within quotes, but it did not yield the desired outcome. Then, I tried escaping double quotes, however, the result remained unchanged.
dummyArray: Array<any> = [{
'pan_name': '',
'pan_label':'',
'pan_type':'Mul-select',
'pan_field':'',
'pan_value':[{'id':1,'name':'xxxx'+'<h2 class=/"fg-white/">AboutUs</h2>`'}]
}]
<div class="form-check">
<label>{{field.pan_label}}</label>
<ng-multiselect-dropdown [placeholder]="'Select'"
[data]="field.pan_value"
name="{{field.pan_field}}"
[(ngModel)]="field.pan_name"
[settings]="dropdownSettings">
</ng-multiselect-dropdown>
</div>
I aim to introduce a text field alongside the selected value.