1
vote
2answers
16 views

Scope variable is not updated on ng-click in views with Angular UI Router

I have a problem with the following code: Plunkr. When I click the button, the ng-click changes the variable var1 in scope. But apparently this variable is not updated in view, which I have created ...
0
votes
1answer
11 views

Typeahead get multiple value beside the list name

I found its hard to imagine a way to obtain a set of value for the typeahead directive. for example, in this plunker,http://plnkr.co/edit/Sj0kOGipJ4gNv3VCnKzJ?p=preview index.html <!doctype ...
0
votes
1answer
14 views

Angular service reset when changing page through Angular routes

I have multi page signUp form , I need to persist data until last step , so that user can jump to any step back and edit. I am using service "User" as singleton object for all six steps. ...
0
votes
0answers
11 views

Adding Checkbox to Angular UI Accordion

I would like to add checkboxes to the angular ui accordion (both to the header as well as to the menu points below the header) to generate some kind of tree structur. [] Header 1 [] Menu Point 1 ...
0
votes
0answers
6 views

Ionic / Angular ui-router - tabs returning wrong URL/content

I have an Ionic tab menu which shows 4 items (code here and codepen just has 2 items for clarity) and a "more" item which leads to further menu choices displayed as a list in an ion-content. It uses ...
0
votes
3answers
25 views

How to communicate between controllers while not using SharedService between them?

I was reading all the answers about communication between controllers and directive, but is seems to me occurred using shared service and inject it to each one of them. When I'm developing a very ...
0
votes
1answer
23 views

AngularUI Bootstrap Modal template file

I am trying to implement Bootstrap Modal from http://angular-ui.github.io/bootstrap/ (pls. search for Modal). The templateUrl refers to myModalContent.html. But, I could not find this file. Can ...
0
votes
0answers
20 views

AngularJS based scroll plugin for mobile devices

In Mobile devices I want to provide scroll on certain elements in my web page which is developed using AngularJS. How to do this? Please suggest a good AngularJS plugin if this feature is not native ...
0
votes
1answer
22 views

How to communicate between directive (tree component) and any other controller or directive in AngularJS app?

First of all, I have read so much info you all share about communication between controllers, that I'm now so confused about the BEST way to do it. I understand I should use service, but don't really ...
0
votes
1answer
49 views

What do I need to include that angular bootstrap just simply works

I have included these in my index.html because bower is including them: <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> <!-- bower:js --> ...
0
votes
1answer
33 views

How to detect closing a modal window in $modal? angular-ui

I am using the $modal in angular-ui to create a modal window her is the code for creating the model. this.show = function (customModalDefaults, customModalOptions, extraScopeVar) { //Create temp ...
-4
votes
0answers
19 views

The radio buttons are not getting cleared in angular js

I have a weird problem with radio buttons not working with angularjs I have two sections of radio button on my page Section 1 <input type="radio" ng-model="myradio" name="Monish" value="Monish" ...
0
votes
1answer
262 views

UI-Router: sequential resolve of parent and child states

I have two abstract states parent and parent.child, and an activateable state parent.child.grand. I want parent to be promise resolved before parent.child.grand gets its resolves executed. Why? ...
0
votes
1answer
16 views

Full Calender not working with angular code

I'm using ashraw's fullcalendar for an event scheduler in my project, and to display the events I have to write the code in jquery like this: $(document).ready(function() { ...
0
votes
1answer
24 views

Year Picker in popup with angular-ui bootstrap

I'm trying to have a year picker using the angular-ui Bootstrap datepicker directive. It works when it is inline, but not in the popup. Setting the options via datepicker-options doesn't matter for ...
0
votes
0answers
4 views

How do I clear the jqxinput textbox in angular method?

FYI : I have all my scripts and other necessary files loaded. In my controller, I have: mainApp.controller('secureLoginController', ['$scope', '$state', 'mainWebService', function($scope, $state, ...
0
votes
0answers
3 views

MobileAngularUI scrollable directive for Windows Phone 8 (WP8)

I am using the mobile angular UI framework to develop our new app. it works great in android and ios, but having a couple problems with WP8. The worst problem i have is that the scrollable ...
0
votes
0answers
28 views

few issues need to be fixed in angularjs ui tree with check boxes (get selected list, check on children too on select all, etc)

please see my plunker at http://plnkr.co/edit/Cfn5l6YySrLjidYvgi9V?p=preview. I am trying to modify angular-ui-tree (http://ngmodules.org/modules/angular-ui-tree) to include check boxes. I am facing ...
0
votes
2answers
27 views

ng-include changing behavior of angular-ui datepicker

I was using ng-include on a few of my pages, however I had to stop using ng-include because it was breaking the angular-ui datepicker. I opened this Github bug. I am wondering if anyone else was ...
0
votes
1answer
14 views

angular-ui typeahead, not dismiss after click

angular-ui typeahead, not dismiss after click, my requirement is I will have a checkbox in the typeahead result, and support multi select, so I don't want the typeahead popup dismiss when I click one ...
1
vote
1answer
15 views

Named view transition using ui-router

Is it possible for a named view in ui-router to make a transition to some other named view? For example, in the snippet below, is it possible to move from blue@bar state to orange@foo state? ...
1
vote
2answers
54 views

How to pass parameter when I redirect the page in angularjs using ui router?

I am trying to pass parameters via the ui-router state.go However, I am not sure how to pass the parameters. Here are my codes app.config(function($stateProvider) { $stateProvider ...
0
votes
1answer
30 views

How to do a page redirect page in angularjs?

Blockquote I am trying to redirect my page to different page in my app. The problem is that all the url settings are all in my app.js with ui-route and I need the redirect happens inside my ...
0
votes
1answer
25 views

Angular UI router not working

**This js file for the ui router is proper or not.The error displaying is "Error: Unknown provider: $stateProvider from routerApp" this js files have been loaded in the Html file. ** var ...
-1
votes
2answers
32 views

Event on initial load

I am trying to catch the first load of a view using ui-router to show a login screen if a user is not logged in. However $stateChangeStart is not firing on the first load, but it does on the ...
0
votes
1answer
28 views

angularjs, tree directive with check boxes

Can any one direct me for angular js tree directive with check boxes. I have come across few but none of them are fully functional with check boxes.Even the angular ui tree, ...
0
votes
1answer
32 views

Can AngularJS $modal service (ui.bootstrap.modal) be made to block synchronously?

I am using the AngularJS $modal service (ui.bootstrap.modal) to present a dialog box: $modal.open({ templateUrl: 'resources/qad/qraview/view/qModalDialog.html', controller: ...
0
votes
0answers
15 views

Owl-carousel and angularjs. How ot work?

I need to use owl-carousel on my page with ng-repeat This is my json [{ "name": "Jonh", "spec": "soldier" }, { "name": "Stan", "spec": "doctor" }] And my controller ...
0
votes
0answers
26 views

$modal in ui-router with service

I have a very simple $modal feature that opens up a pop up and performs a simple get() to display information. I got the pop up working but I can't get my service to make the API call correctly. ...
0
votes
0answers
27 views

angularjs, multiple directives, angular tree view with check boxes

I am trying to use angular tree with check boxes (https://github.com/joshgo/AngularJS-Samples/tree/master/Tree-Checkbox) for my angular-js application in which I am already using nvd3 directives to ...
0
votes
1answer
44 views

Dynamic Form and AngularJs

We have a dynamic Form being rendered based on database configurations. I am using code as mentioned in the below fiddle But am not able to get the value of the checkbox element selected. Please ...
1
vote
1answer
18 views

Filter angular-ui typeahead autocomplete for more than one field

I have a snippet in plunker. I am try to filter result for two fields(in OR condition) typeahead="state as state.name for state in statesWithFlags | filter:{name:$viewValue,country:$viewValue}" ...
0
votes
0answers
31 views

State.go in service angular

Can I use $state.go() inside a service in AngularJS? I am trying to inject $state inside a factory service and trying to change the state. Is this possible? Config: .state('app', { url: ...
2
votes
1answer
21 views

Angular UI Router new view, same URL

I have the following state defined in my Angular app and I'm wondering if it's possible to inject a template from another state into the current state? In my .catch() below I have: ...
0
votes
1answer
19 views

Angular UI Map loading

I have tried to follow the https://github.com/angular-ui/ui-map guide to integrate google maps into my project, but I don't quite understand where I'm going going wrong. I also get a strange error. I ...
0
votes
1answer
27 views

Why does TreeView not load in loaded in angular?

I am tring to create a TreeView with drag and drop functionality. I use this plugin http://ngmodules.org/modules/angular-ui-tree, a demo is available here: http://jimliu.github.io/angular-ui-tree/ ...
1
vote
0answers
36 views

How to do page transition in AngularJS

I am trying to do page transitions whenever the page is routed to a new path. I could find awesome transitions @ AngularJS Transitions by Minko Gechev But I am not able to apply these transitions on ...
3
votes
1answer
132 views

Angular directive creation - using multiple templates

I'm fairly new to Angular JS and I'm trying to create a datepicker directive. It will not work like the Angular UI Bootstrap datepicker as it won't use a textbox but a full page calendar which you ...
1
vote
1answer
47 views

how to show html on pop over using angular ui bootstrap?

I make demo of pop over like this .It show a pop over on right side when I click the button .But now problem is that how I will show some html on pop over . <html ng-app="plunker"> ...
0
votes
0answers
31 views

Share data between two ui-views inside a state in angularjs ui-router

I'm using angular-ui ui-router for a web-app. I have a state/view configuration like this: ... .state('parentState', { url:'/:id', views: { 'main@parent': { controller: ...
0
votes
0answers
20 views

angular, angular-snap.js, toggle button click hide/show behavior should not effect header and menu

I am using angular-snap.js for my vertical slider. The problem I am facing is that the snap-content and snap-drawer Toggle buttons are appearing and functioning from the top of a page (even above the ...
1
vote
1answer
70 views

AngularJS multiple ngApps each with its own ngRoute definitions, lazyloaded and bootstrapped on one page

My question comes from the need to lazy load different/separate ngApps on one page(bootstrapping them with angular.bootstrap), each of them using its own ngRoute definitions(defined in such a way that ...
0
votes
1answer
32 views

Angular ng-grid summary per column when grouping

I learned about how to customizing ng-grid's aggregation when grouping a grid here. Now - what If I would want a summary per column (value1, value2, value3) shown in the aggregateTemplate when ...
0
votes
0answers
22 views

Multiple Resolves for Multiple Tabsets AngularJS

So I have a problem where I need to show dynamic data on a bunch of different tabs in different tabsets. I have the basic setup here: site layout <div class="col-sm-3 full-height" ...
0
votes
1answer
23 views

Making AngularUI UI-Date datepicker use UTC time

It seems the datepicker uses localized time but I need it to use UTC times when I make calls to the backend. I get around this issue by adjusting the value before posting it to the server using the ...
0
votes
1answer
15 views

Ionic looses history on switching to other state with different ion-tabs

When I am switching from one page that contains ion-tabs directive to another, ionic looses history. Do you know how to fix it or at least could you point me which part of code is responsible for it?
1
vote
0answers
40 views

Using AngularJS and AngularUI to setValue of CodeMirror on ng-click?

I have an angular app where can write, save, edit, and run code snippets. The angular app looks like this: var app = angular.module('myApp', ['ui']); app.value('ui.config', { codemirror: { ...
-1
votes
0answers
14 views

Angular Js Ui Pagination Varies between different versions

I am an Beginner in Angular Js , I have done an pagination with the help of an thread posted in SO and it works perfect . I have an problem here and if i use the latest version of angular js UI its ...
0
votes
1answer
47 views

“ui-sref” does not refresh the “ui-view”(its controller does not rerun) when a link is clicked twice

When a state is clicked at first, the div that owns the "ui-view" attribute is replaced with the "template" of that state. However, when I click the same state again, its controller does not reloaded. ...
0
votes
0answers
31 views

AngularJS ng-grid Expor to excel sheet not just CSV

Hi I am working with an AngularJS webapp where I display data using an ng-grid and a bar chart. I am trying to find a way to export the tabular data and a PNG/PDF version of the bat char to an excel ...