angular-block-ui icon indicating copy to clipboard operation
angular-block-ui copied to clipboard

AngularJS Block UI Module

Results 60 angular-block-ui issues
Sort by recently updated
recently updated
newest added
trafficstars

I'm trying to implement angular block ui inside my custom directive, its not working. it throws error.

We have multiple textfields in the ui which has ng-blur event, Once we tab out from one text field to another say field1 to field2, then ng-blur event is getting...

Ref: the same in https://github.com/malsup/blockui/issues/59 Workarround: add in css: .block-ui-active-cursor-default > .block-ui-container { cursor: default; } modify in js $scope.$watch('$_blockUiState.blockCount > 0', function (value) { $element.toggleClass('block-ui-active', !!value); $element.toggleClass('.block-ui-active-cursor-default', !value); });

Add --save in order to update bower.json dependencies

as mentioned in [here](https://github.com/McNull/angular-block-ui/issues/90) to add Image loader, I tried to use template and templateURL properties individually. not working after adding those properties. although adding `blockUIConfig.message =" custom loading msg"`...

angular.module('myApp').controller('MyController', function($scope, blockUI) { // A function called from user interface, which performs an async operation. $scope.onSave = function(item) { ``` // Block the user interface blockUI.start(); // Perform the...

Hi there, this is my problem... i have to make an setInterval function every 3 seconds whit an ajax call. So im getting blocked every 3 seconds. Any solution ?...

Hi, I wanted to load a default message that changes after translation data arrive. My workflow is as follows: 1) ``` app.config(['blockUIConfig', function (blockUIConfig) { blockUIConfig.message ='Wait for it...'; }]);...

I'm using angular-strap tabs and in this tab contains infinite scroll. When I switch tab and go back when I was, and keep scrolling, the page start going top. If...