Questions tagged [angularjs-ui-utils]

Companion suite to the AngularJS framework.

Companion suite to the framework.

Useful links

21 questions
7
votes
3 answers

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 the input upon clicking or losing focus?
Tyler Pflueger
  • 787
  • 2
  • 11
  • 17
5
votes
2 answers

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 categories to the one you selected. This repeats…
Mauro
  • 3,411
  • 2
  • 22
  • 34
5
votes
2 answers

Angularjs ui-mask with ng-pattern

below code is not working..
user3056462
  • 75
  • 2
  • 5
4
votes
2 answers

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 request and refresh data. From ui-scroll docs, we…
4
votes
1 answer

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 ui-select renders won't get a name attribute, and since…
4
votes
1 answer

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 not work.
Regis Santos
  • 2,609
  • 6
  • 34
  • 60
2
votes
2 answers

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 batch after opening a batch When user click on…
Sunil Mane
  • 23
  • 3
1
vote
1 answer

Why Angularjs bootstrap modal is not opening?

My angularjs bootstrap modal is not opening. var app=angular.module('test', ['ui.bootstrap']); app.controller('ModalDemoCtrl', function($scope, $log,$modal) { $scope.user = { user: 'name', password: null, …
1
vote
2 answers

Use enter to submit an input change

I want to make a list of items, double-clicking on one item makes it editable. Currently, while editing an item, clicking outside (ie, blur) submits the new value. But, I also want enter on the keyboard to be able to submit the change. Now,…
SoftTimur
  • 8,904
  • 23
  • 106
  • 212
1
vote
1 answer

ui-mask and ngpattern not working for phone number

I am trying to mask a number in format xxx-xxx-xxxx and trying to make sure that the the phone number starts from any digit except 0 and 1
nisha kanani
  • 243
  • 1
  • 4
  • 15
1
vote
1 answer

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: http://plnkr.co/edit/NozbdhtRjaxq1KFYrwLo?p=preview
HP.
  • 17,550
  • 43
  • 139
  • 240
1
vote
1 answer

Angularjs ui utils highlight filter breaks application on search

I am using Angular ui-utils highlight filter and I have the following code: When I search using special character like [ or (, I get angular exception and application…
Ajay Kumar
  • 1,124
  • 9
  • 22
1
vote
2 answers

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 node2.1, filtering won't work properly. Please find…
1
vote
2 answers

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 don't know how to fix it update when user select…
user3987709
0
votes
3 answers

How to debug Unique not displaying properly in AngularUI?

Include myApp "use strict"; var myApp = angular.module('myApp', ['ui'],…
cyb3rZ
  • 43,853
  • 82
  • 251
  • 430
1
2