什么用于Bootstrap和AngularJs多选?

时间:2015-06-25 13:21:10

标签: angularjs twitter-bootstrap

当人们需要多选下拉列表时,是否存在人们默认的内容,这些内容可以在引导程序中运行而不会破坏样式并接受角度属性?

找到这些,但我不确定是否会正常工作:
 1. http://davidstutz.github.io/bootstrap-multiselect/
 2. http://isteven.github.io/angular-multi-select/#/configs-options

检查文档两次 - 在bootstrap和bootstrap-ui中似乎没有任何原生,但只是想要仔细检查。

1 个答案:

答案 0 :(得分:1)

我选择的工具是使用角度材质的复选框: angular material checkboxes 它不是bootstrap,但我更喜欢角​​度材质上的演示选项来引导,所以一直在慢慢地从bootstrap迁移到使用角度材料。

编辑:Angular材质与bootstrap兼容。如你想要一个下拉列表,这可能会更好: angular material multiselect codepen example

 <md-select placeholder="State" ng-model="ctrl.userState" multiple="true">
        <md-option ng-repeat="state in ctrl.states" value="{{state.abbrev}}">{{state.abbrev}}</md-option>
 </md-select>