它适用于静态下拉列表,但是当它使用angularjs申请动态数据加载时,已应用了selectpicker,但未加载数据。 如果我从下拉列表中删除了该指令,则数据完全加载,问题是什么?我试过更多......
注意:使用类创建的方法,所以
中没有问题bootselectpicker: function() {
return {
restrict: "A",
require: "ngModel",
link: function(scope, element, attrs, ctrl) {
element.selectpicker();
}
}
}
<select id="special-size" bootselectpicker ng-model="items.selectSize" ng-options="size.key as size.value for size in products.sizes" ng-change="sizeChange('size',items.selectSize)" class="selectpicker size-droplist">
<option value="">Select Size</option>
</select>
答案 0 :(得分:9)
您必须等到加载DOM,因为SelectPicker是根据<option>
元素中的<select>
元素构建的。如果尚未构建ng-options,则没有<option>
个元素,因此SelectPicker为空。
在DOM准备好之后,通过使用Angular的$ timeout并在没有延迟的情况下启动SelectPicker。没有延迟,$ timeout只等待DOM准备就绪然后运行回调。
像这样:
link: function(scope, element, attrs, ctrl) {
$timeout(function() {
element.selectpicker();
});
}
另外,如果您的products.sizes
已更新,则必须手动运行element.selectpicker('refresh')
,因为SelectPicker不会监听<option>
中的更改。
答案 1 :(得分:7)
解决方法如下:
定义这样的选择:
<select class="selectpicker" data-live-search="true" ng-model="id">
<option class="small-font" selected value='any'>Anyone</option>
<option class="small-font" ng-repeat="member in List" data-select-watcher data-last="{{$last}}" value="{{member.id}}">{{member.name}}</option>
</select>
和selectWatcher指令:
app.directive('selectWatcher', function ($timeout) {
return {
link: function (scope, element, attr) {
var last = attr.last;
if (last === "true") {
$timeout(function () {
$(element).parent().selectpicker('val', 'any');
$(element).parent().selectpicker('refresh');
});
}
}
};
});
它的作用是检测何时在select中添加了最后一个选项,然后选择默认选项并刷新。
答案 2 :(得分:1)
setTimeout(function () {
$('.selectpicker').selectpicker('refresh');
},1000)
在为ng-repeat或ng-options制作数组的地方调用此函数
答案 3 :(得分:0)
试试这个指令
.directive('selectPicker', ['$parse', function ($parse) {
return {
restrict: 'A',
require: '?ngModel',
priority: 10,
compile: function (tElement, tAttrs, transclude) {
tElement.selectpicker($parse(tAttrs.selectpicker)());
tElement.selectpicker('refresh');
return function (scope, element, attrs, ngModel) {
if (!ngModel) return;
scope.$watch(attrs.ngModel, function (newVal, oldVal) {
scope.$evalAsync(function () {
if (!attrs.ngOptions || /track by/.test(attrs.ngOptions)) element.val(newVal);
element.selectpicker('refresh');
});
});
ngModel.$render = function () {
scope.$evalAsync(function () {
element.selectpicker('refresh');
});
}
};
}
};
}])
this is the html
&#13;
<select class="form-control with-search " select-picker data-live-search="true" title="Select Consumer" ng-model="selectedConsumer" ng-options="c.id as c.firstName + ' ' + c.lastName for c in consumers">
</select>
&#13;