【发布时间】:2018-07-11 12:49:45
【问题描述】:
在下面的代码中,我想使用 search inside 选项,比如自动完成。我该怎么做?
<div class="row">
<div class="input-field col s12">
<select formControlName="sensorType_id" id="sensorType_id" materialize="material_select" [materializeSelectOptions]="sensorstype">
<option value="" disabled selected>Select Sensor Type</option>
<option *ngFor="let sensortype of sensorstype" [value]="sensortype.sensorType_id">{{sensortype.sensordescription}}</option>
</select>
</div>
</div>
【问题讨论】:
标签: html angular typescript autocomplete materialize