Companion suite to the AngularJS framework.

learn more… | top users | synonyms

0
votes
0answers
18 views

angular ui-keydown is not working with shift+ctrl+alt+A keys

For example: <div ui-keydown="'shift-ctrl-alt-65': 'ctrl.scrollFromShortcut($event,\'others\')'"></div> shift-ctrl-65 is working correctly. But shift-ctrl-alt-65 is not working with ...
0
votes
0answers
8 views

How to close angular ui alert

I'm trying to close the alert. Any one please guid me <uib-alert type="{{message.type}}" ng-show="{{message.show}}" close="closeAlert()" >{{message.msg}}</uib-alert> ...
0
votes
0answers
134 views

AngularJs ui-scroll reload not working

In one of our angular application, we are using ui-scroll directive for lazy-loading. I have created a adapter and assigned to the ui-scroll directive. I need to reload the entire data by making API ...
1
vote
1answer
804 views

ui-utils phone mask does not work with Ionic input

I need to do phone mask (999) 999-9999 like this example http://angular-ui.github.io/ui-utils/ but for Ionic mobile app input. The ui-utils works fine in bare AngularJS app: ...
5
votes
2answers
189 views

How can I validate an ng-repeated dropdown category selector?

I created a nested category model. In order to select a category for a product, you see a dropdown with the main categories. When you select one, a new dropdown is added to the right with the child ...
0
votes
1answer
128 views

How put AngularJS + AngularJS UI (Utils + Bootstrap) into Grails? [closed]

I need to put into Grails 2.4.4 this: AngularJS v1.3.15 AngularJS UI Utils v0.2.3 AngularJS UI Bootstrap v0.2.11 Bootstrap CSS v3.3.4 (needed by AngularJS UI Bootstrap) JQuery? not sure if needed ...
1
vote
1answer
177 views

Angularjs ui utils highlight filter breaks application on search

I am using Angular ui-utils highlight filter and I have the following code: <span data-ng-bind-html="organization.level1Name | highlight:vm.search"></span> When I search using special ...
3
votes
1answer
1k views

angularJS valdr + ui-select validation

I was googled on this issue but still can't find the right discussion about it. We are using valdr and ui select in a form ( angularJS app ) and we've faced the problem that the input that the ...
0
votes
1answer
598 views

AngularJS ui-utils password validation

I've got a problem with angular ui-utils, specifically ui-validate. I'm trying to supply a user with a password change form and to require "new password" and "confirm new password" to match, here: ...
2
votes
1answer
498 views

issue with angularjs ui tree filtering at child level

Angularjs UI tree filtering feature is not working at child level however it is working fine at group level. For example if we type node1 or node2 filtering works fine, but if we type node1.2 or ...
0
votes
0answers
118 views

How to re-create bootstrap's affix using angular scrollfix?

ui-bootstrap currently does not support affix. Instead, there are comments here saying we can adapt ui-utils scrollfix directive to achieve the same thing. I want to use Bootstrap's affix styling, ...
1
vote
2answers
325 views

how to combine values from Datepicker & Timepicker in one variable

I have angular App U I have Datepicker & Timepicker using angular-ui when user select date $Scope.dt and set time $Scope.mytime I am trying to combine in one $Scope.SelectedDateTime I get NaN. I ...
0
votes
1answer
116 views

Apply AngularJS directive (ui-scrollfix) conditionally

I'm using ui-scrollfix directive from UI.Utils to make so called sticky header. It works fine. There are two headers in the app. Main one is constantly on the page and second one appears only in ...
2
votes
1answer
2k views

Angularjs ui-mask with ng-pattern

below code is not working.. <input type="text" class="form-control input-sm" placeholder="hh:mm:ss" name="hhmmss" ng-model="data.hhmmss" ui-mask="99:99:99" ...
3
votes
1answer
1k views

Input Mask with angular-input-masks

I wanted to make input mask, in case CNPJ. Then I saw it here. https://github.com/assisrafael/angular-input-masks/ But not getting to implement. See the excerpt from my code, in which case it did ...
1
vote
2answers
155 views

Displaying a Modal Dialog in AngularJS

I am using AngularJS to develop an application. Below is my requirement is like: User should have search screen to search batch information once the result is loading, user is click on one of the ...
2
votes
2answers
2k views

How to set autoclear on angular ui-mask to false?

I currently have an input with a ui-mask for a phone. If the value that is inputted isn't the full length of the mask, it clears the input. Is there a way to set the ui-mask so that it doesn't clear ...