could you please tell me how to sort array in ascending or descending order on button click .Actually I have a button on header \"V\" .using button click I want to display data
EDIT: Sort both directions
To be able to sort in both directions, you should probably use a directive. Using a directive will allow you to create an isolated scope for each of the headings, this way they can keep track of their own current values.
.directive('sortHeader', function($timeout) {
return {
restrict: 'E',
scope: {
'label': '@',
'sortstring': '&sortExp',
'idx': '@index'
},
templateUrl: 'sort-header.html',
link: function(scope, element, attrs) {
scope.reverse = false;
element.on('click', function(){
$timeout(function(){
scope.reverse = !scope.reverse;
});
});
}
};
});
This directive has properties for:
label
[string] The column header name.index
[string] The column index in the original data set. Note, you cannot use the $index of the ng-repeat.sort-exp
[method] This is a bindable method that you can use to retrieve the current index and reverse values to set your orderBy filter expression. The function passes two values: idx, reverse
, in that order. These represent the index of the current element and reverse order as a boolean.You use the directive as follows:
And, in your controller, you can bind to the sort-exp with a function:
$scope.setSort = function(idx, reverse){
$scope.sortval = 'columns['+idx+'].value';
$scope.reverse = reverse;
};
Finally, in your ng-repeat, you can set up your orderBy filter with the scope values that you used to define the sort expression (in this case $scope.sortval) and the sort order (in this case $scope.reverse):
ng-repeat="column in displayData | orderBy: sortval:reverse | filter: query"