在使用Angular Formly时如何在ui-bootstrap模式中使用ui-select?

时间:2016-02-22 10:45:14

标签: angularjs angular-formly

如何在使用Angular Formly时在ui-bootstrap模式中使用ui-select?

http://angular-formly.com/#/example/integrations/ui-bootstrap-modal - >此链接包含示例,但此处它们仅采用输入字段。

1 个答案:

答案 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);"