Tagged Questions
0
votes
0answers
16 views
angular-ui: can't set tab to active
I get the angular error:
Error: l is not a function
.compile/</<@http://localhost/investui/app/vendor/uibootstrap/ui-bootstrap-tpls-0.4.0.min.js:1
...
0
votes
1answer
18 views
Angular-UI and Bootstrap-UI together
I'm very new to AngularJS.
pelase let me know how can I use BOTH Angular-UI and Bootstrap-UI in the same page (application).
Or, how can I use just the Angular-UI (which I supposed to be the parent of ...
0
votes
1answer
37 views
Can you access a global javascript variable in an Angular expression?
Is there a way to access a global JavaScript variable in a Angular expression? such as:
ng-disabled="{someJavascriptVariableHere}"
0
votes
2answers
31 views
Bitwise Angular Expression not working
I have a basic ng-show expression as follows:
ng-show="((message.status & messageStatus.Spam) != 0)"
However, this fails with the following msg: "Token '&' is unexpected, expecting [)] at ...
0
votes
2answers
21 views
Preserve state with Angular UI-Router
I have an app with a ng-view that sends emails to contact selected from a contact list.
When the users select "Recipient" it shows another view/page where he can search, filter, etc. "Send email" and ...
0
votes
1answer
36 views
Using ng-switch in angularjs directive and using that directive in ng-grid cellTemplate
I made a following directive:
.directive('getData', function(){
return {
restrict: 'C',
replace: true,
transclude: true,
scope: { ...
0
votes
1answer
29 views
angular-ui / ui-router nested states not inheriting custom data
The method described for states to inherit custom data from parent state seems to not be working.
System = {
name: 'System',
url: '/System',
controller: ...
0
votes
0answers
13 views
How to manage state with the ui-router with multiple modules
I have an app page with 3 columns. The middle column is the main activity and is always displayed. The two side columns are widget lists, that have their own controller and states, and can be either ...
0
votes
3answers
45 views
Angular ui-router get asynchronous data with resolve
I want to display a form with data corresponding to the edited item. I use ui-router for routing. I defined a state:
myapp.config(function($stateProvider) {
$stateProvider.
...
0
votes
1answer
40 views
How to implement a loading dialog whilst dealing with $http request
I am currently writing an AngularJS webapp using parts of Angular-ui - notably UI-Bootstrap
I would like to be able to display a loading dialog while the app gets its data. On initial load I also ...
0
votes
1answer
26 views
Angularjs Directive Assistance with Bootstrap-UI $Dialog
I am working on creating a custom directive which creates a button within an ng-repeat and will bind to the current item. Once the button is clicked, a $dialog opens with a select2 box to select and ...
0
votes
0answers
11 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
24 views
How to improve plnkr includes Angular UI Router and Angular UI Bootsrap Carousel [closed]
http://plnkr.co/edit/uOW7tUQ2D5P22pBgLyoK extends Ben Schartz's fiddle on Angular UI Router, and loads a partial html containing the Angular UI Bootstrap Carousel demo. Apart from too many includes, ...
0
votes
0answers
38 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 ...
-1
votes
1answer
30 views
Angular UI passing data between controller [duplicate]
I have a search form where user enters few fields ( say username and date) to search. I need the search parameter to be passed to a new controller/child controller so that it can fetch search result ...