After conducting thorough research online, I have experimented with various approaches but unfortunately, none have proven successful.
I am seeking guidance on how to disable pagination when clicking on the replace button. Due to the spinner loading and wait time, I believe it would be beneficial to simply disable this feature without removing it entirely. While I am proficient in removing features using CSS and AngularJS, I am uncertain about effectively disabling this specific function compared to my previous tasks.
HTML:
<button class="btn btn-blue" ng-click="handleLoadAndDeactivate()"
ng-show="'Load' == importAction && 0 == errors"
title="Load">
Replace
</button>
AngularJS (Button):
$scope.handleLoadAndDeactivate = function () {
$scope.onCompleteData.targetBody.withDeactivation = true;
onComplete($scope.onCompleteData, $scope.handleLoadAndDeactivateCompleted);
};
AngularJS (Table):
$scope.operationsPreloadCompletedTableOptions = new NgTableParams({}, {
dataset: importLog
});
html