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
192 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
555 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
215 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
28 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
81 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
59 views
AngularJS - bind not regular components to a model
I'm learning AngularJS and i'm stucked on something that is very frustrating me. I have two images , actually their functionality is radio buttons group , if first is choosed so second is non active ...
1
vote
0answers
36 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
160 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
39 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
185 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
259 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
16 views
Use all google maps API features in AngularJS
I am working on a project relying on AngularJS where I need to locate all airports in the world and link them with lines.
To do so, I searched for some existing projects that set angular directives ...
0
votes
0answers
16 views
Use Bootstrap navbar in angularJs
I am trying to use bootstrap navbar in my Angular template but can't get it work !
Actually, Angular considers href that permits to get to the corresponding Div as a route and tries to go to its ...
0
votes
0answers
59 views
Angular UI Bootstrap Tabs open on route change
I am using the tab directive from Bootstrap UI for my current AngularJS project and am heavily struggling with the implementation of route-based tabs.
<tabset>
<tab heading="Dashboard"
...