Angularjs [$rootScope:inprog] inprogress error Angularjs [$rootScope:inprog] inprogress error codeigniter codeigniter

Angularjs [$rootScope:inprog] inprogress error


Usually this means that you defined $rootScope.$apply somewhere manually inside of the another angular code which has lifecycle already. This should not be happen in common cases as angular tracks the lifecycle itself. The one common case where it is needed is when you need to update scope from non-angular code (like jquery or old-fashioned js stuff). So please check if you have this somewhere. In case you really need it's better to use safe apply (the common code snippet):

angular.module('main', []).service('scopeService', function() {     return {         safeApply: function ($scope, fn) {             var phase = $scope.$root.$$phase;             if (phase == '$apply' || phase == '$digest') {                 if (fn && typeof fn === 'function') {                     fn();                 }             } else {                 $scope.$apply(fn);             }         },     };});

Then you can inject this service and make necessary calling by:

scopeService.safeApply($rootScope, function() {    // you code here to apply the changes to the scope});


[$rootScope:inprog] inprogress error in my case:
Case 1: It means you're executing two actions at a time.

Example:

goView();hidePopOver(); //Will trigger error

Use $timeout to make sure two actions (function) are not running at the same time.

goView();$timeout(function () {    hidePopOver();}, 300);

Case 2: an action has not executed completely.
Use $timeout to make sure first action has executed.

$timeout(function () {    $(element.target).trigger('click');}, 300);


I faced the same issue, but the time delay resolved my issue like a charm.

$timeout(function () {    $(element.target).trigger('click');}, 300);

If the trigger is on jquery/javascript side.

setTimeout(function () {    $(element.target).trigger('click');}, 300);