我无法找到如何从select中显示项目列表的示例,但没有启用多项选择(我不想要)。
我的代码:
<select id="documentList" class="selectAlternateEvens" style="width: 85%; height: 300px;"
ng-options="a.key as a.value for a in documentList" multiple ng-model="selectedDocument">
</select>
我想将documentList呈现为...列表框,但一次只能选择1个文档(selectedDocument将不再是我想象的数组)。任何帮助将不胜感激!
答案 0 :(得分:1)
'multiple'属性可以进行多项选择。删除它。
如果您只想显示列表而不是下拉列表,请使用'size'属性。
<select id="documentList" class="selectAlternateEvens" style="width: 85%; height: 300px;"
ng-options="a.key as a.value for a in documentList" size="4" ng-model="selectedDocument">
</select>