Hi Team,
Could anyone help on below issue.
In the below code change event is not triggering (function doesn't execute) or even the selected value is populating in textbox. It is not working especially in widget SDK.
Html:
<div class="row">
<div class="four columns">
<div class="field">
<label soho-label for="product_single">Products</label>
<input soho-lookup #SohoLookupComponent
soho-trackdirty (pristine)="onPristine($event)" (dirty)="onDirty($event)"
[(ngModel)]="productId"
[columns]="columns_product"
[dataset]="data_product"
(change)="onChange($event)"
(afteropen)="onAfterOpen($event)"
field="productId"
title="Products"
name="product_single" />
</div>
</div>
</div>