如何在使用Angular Formly时在ui-bootstrap模式中使用ui-select?
http://angular-formly.com/#/example/integrations/ui-bootstrap-modal - >此链接包含示例,但此处它们仅采用输入字段。
答案 0 :(得分:0)
我在我的代码中使用了这个
var modelInstalnce = $uibModal.open({
templateUrl: '...',
scope: $scope,
controller: function($scope,$uibModalInstance){
$scope.selectedValue = selectedValue;
function selectedValue($search){
$select.selected = $search.value;
}
}
HTML
on-select="selectedValue($select.selected);"