2014-01-17 88 views
0

我通過使用用戶界面,選擇2的創建一個下拉=」「我怎麼能到結果如何訂購列表中的元素

HTML中的列表項目進行排序:

<input style="width:100%" type="text" ui-select2="selectuiOptions"  
data-placeholder="Select or Add Process/Ingredient"> 

JS:

$scope.selectuiOptions = { 
      data : $scope.processes, 
} 

我如何列表元素進行排序到結果

+0

ui-select2與ng-option不兼容。 – 2014-01-17 10:32:38

回答

0

這裏是例子:

function MyCtrl($scope, orderByFilter) 

var isReverse = true, 
    propertyName = 'myProperty'; 

$scope.selectuiOptions = { 
    data : orderByFilter($scope.processes, 'propertyName', isReverse), 
    ... 
} 
+0

tnks,但它不工作.. –