这是我的选择标签。我想让它成为可编辑的。 如果可能,将其更改为输入文本。 这里我的ng-model是对象,显示为list.productcode。
<select class="default form-control" ng-options="list.productcode for list in getproductList" ng-model="list"></select>
请帮助如何更改此内容。
答案 0 :(得分:0)
这可能对您有所帮助
datalist
是html5标签
<input type="search" ng-model="txtModel" list="list" />
<datalist id="list" ng-model="list">
<option data-ng-repeat="data in list" value="{{data.ColumnName}}">
</option>
</datalist>
注意ColumnName是您可以使用的列的名称