Angular Styles – Tips and Tricks Posted by DT-Tech Categories Angular, Uncategorized Date December 23, 2023 Angular way of binding object array in a Html Select / Combo box. <h1>Object Binding with Select / Combobox</h1>Select value :<select (change)=“handleChange($event.target.selectedIndex)“ name=“cmbTipoTexto” class=“form-control form-control-sm col-sm-7” id=“cmbTipoTexto” > <option *ngFor=“let item of textTypes“ [value]=“item.id“> {{ item.displayValue }} </option></select><br /><br /><br /><b>Selected Object:</b><br />{{ selectedObject | json }} Share: DT-Tech Previous post Typescript - Tips and Tricks December 23, 2023