You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the equivalent for beforeSelectionChange that was available back in ng-grid?
Why I need it and why I was using it in ng-grid?:
When the user selects a row, an ajax call is performed. While this ajax call is happenning, I don't want to allow the selection to be modified, so I used to do this:
beforeSelectionChange: function () {
return !($scope.doingAjaxCall);
},