materialize: select not working with angular

the select form component not working with angularjs.

only works in browser-default mode.

but the browser default is not that elegant with other elements on the page 😦

About this issue

  • Original URL
  • State: closed
  • Created 10 years ago
  • Comments: 19 (4 by maintainers)

Most upvoted comments

Its working for me

<div class="input-field col s12">
    <select formControlName="status" [(ngModel)]="selectedStatus" materialize="material_select">
        <option [ngValue]="" disabled>Select</option>
        <option [ngValue]="1">Enable</option>
        <option [ngValue]="0">Disable</option>
    </select>
    <label>Status</label>
</div>

+1 Please reopen this issue