Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
351 views
in Technique[技术] by (71.8m points)

asp.net - Select All checkboxes in all pages in pagination in C#, Angular

I am trying to select all in checkbox and it selects all but only the checkboxes on the current page, if i go to next page or comes back on same page from page numbers it is not selected anymore. Below is the code in .js which is used to checkselect all.

  $scope.checkSelectAll = function () {
                 $scope.isSelectAllSubmission = !$scope.isSelectAllSubmission;
                if ($scope.selectedAllSubmissionOption.id === 0) {
                    angular.forEach($scope.openSubmissions.submissions, function (item, key) {
                        item.isSelected = $scope.isSelectAllSubmission;
                    });
                    angular.forEach($scope.ingrogressSubmissions.submissions, function (item, key) {
                        item.isSelected = $scope.isSelectAllSubmission;scr
                    });
                }
                else if ($scope.selectedAllSubmissionOption.id  === 1) {
                    angular.forEach($scope.openSubmissions.submissions, function (item, key) {
                       item.isSelected = $scope.isSelectAllSubmission;
                   });                    
                }
                else if ($scope.selectedAllSubmissionOption.id  === 2) {
                    angular.forEach($scope.ingrogressSubmissions.submissions, function (item, key) {
                        item.isSelected = $scope.isSelectAllSubmission;
                    });                  
                }
            };
question from:https://stackoverflow.com/questions/65939393/select-all-checkboxes-in-all-pages-in-pagination-in-c-angular

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...