Tagged Questions
8
votes
0answers
3k views
Setting initial values of Angular-UI Select2 multiple directive
I have a select2 directive for a multiple select of countries with a custom query to grab the data:
// Directive
<input ng-model="filters.countries" ui-select2="filters.countryOptions"
...
2
votes
0answers
100 views
AngularJS/UI ui-sortable does not have isolated scope?
While I was looking into an issue I was having with ng-repeats in the ui-sortable directive, which I later found was the same issue as this (https://github.com/angular-ui/ui-sortable/issues/2), I came ...
2
votes
0answers
146 views
Angular-UI $dialog and form submit on enter key
From what I can see, the recomended way to handle enter key in dialogs in AngularJS is to place a <form> tag and a submit button inside the dialog.
Fair enough, but if you use Angular-UI and ...
2
votes
0answers
504 views
Angularjs bootstrap datepicker: Select multiple dates
I am trying to use the angular UI strap datepicker. How to select more than one date from the datepicker and return the value as an array.
http://mgcrea.github.io/angular-strap/#/datepicker
2
votes
0answers
212 views
AngularUI sortable does not work for more then one applications
I have created angularjs application with sortable list.
My application can be included to the page few times with other different applications. (Each of this angular applications is isolated user ...
1
vote
0answers
27 views
Views that behave as lightbox or standalone depending on context
Let's say we have three views: A, B and X. The urls for these are /A, /B and /X.
A and B both contain a link pointing to X. When clicked, X renders as a lightbox on top of A or B, and the url is ...
1
vote
0answers
61 views
Angular.js - does form validation emit any events?
The problem is, I'm using ui-router and I have two views, one is kind of a toolbar, second is content with a form.
Now I'd like to have a save button in the toolbar, which would be disabled if form ...
1
vote
0answers
29 views
$dialog MessageBox — should autofocus primary button in angularUI
I am facing a real hard problem to get the autofocus on primary button in AngularUI $dialog.messageBox so that when i hit ENTER key , messagebox close itself.
Any idea or workaround ??
1
vote
0answers
110 views
Angular-UI-Calendar: Open popup on calendar dayClick
I am using angular ui-calendar which has dayClick() function, which is working properly but when I am attaching popover code inside dayClick function, the popover is not opened.
I have got the ...
1
vote
0answers
129 views
angularjs ui-sortable: cannot call methods on sortable prior to initialization; attempted to call method 'refresh'
i'm trying to do sorting list, i take the element from the db
but..
Error: cannot call methods on sortable prior to initialization; attempted to call method 'refresh'
my html:
<div ...
1
vote
0answers
37 views
How do I detect when Accordion Group has been selected in Angular UI?
I am currently using angular ui and trying to detect when the accordion group changes. So far I have been unable to use jquery to listen to the height changes, etc. Any ideas?
Here is my code ...
1
vote
0answers
177 views
angular-ui ng-grid external column grouping
The drag/drop and built in menu methods are fairly useful for the ngGrid script. I am currently trying to make it so that you can perform the column grouping via an external method such as a check ...
1
vote
0answers
255 views
E2E Testing with Angular UI datepicker
First post. I have a situation where I am using jQuery UI's datepicker to set model attributes. This is done with Angular UI and seems to work well, but I'm having a hard time trying to test it in the ...
0
votes
0answers
10 views
Angular-ui Typehead > Impossible to set value when using object field in as expression
I configure a typehead like this : "obj.id as obj.name for obj in objList" with "ng-model=selectedValue".
If I set selectedValue equals to an obj.id, the typehead didn't find the wanted obj. But if I ...
0
votes
0answers
34 views
Angular-UI Bootstrap - Collapse - what event is triggered when the collapse animation is completed both for showing and hiding?
So I am trying to execute a function that needs to wait for the animation on the angular-ui bootstrap collapse function to finish. I cannot seem to find what that event would be for the angular-ui ...