For invoice form how to display input value for each product object without creating a separate div of each?
ngModel works but since I want to display the selected product price on the input value it is creating the separate div of each product.
<div class="uk-column-1-4" >
<div>
<select class="uk-select uk-margin-top">
<option *ngFor="let productDetail of product">{{ productDetail.productName }}</option>
</select>
</div>
<div>
<input class="uk-input uk-margin-top" type="number" name="quantity" min="1" max="10" value="productDetail.qty" />
</div>
<div *ngFor="let productDetail of product">
<input class="uk-input uk-margin-top" id="price" name="price" type="number" [(ngModel)]="productDetail.price" /><span>₹</span>
</div>
<div>
</div>
</div>
I want to display the price of the selected product name on the input field itself without generating the separate field.

{{productDetail.price}}below the<input>? - Nicholas K