AngularJS is an open-source JavaScript framework. Its goal is to augment browser-based applications with Model–View–Whatever(MV*) capability and reduce the amount of JavaScript needed to make web applications functional. These types of apps are also frequently known as Single-Page Applications.

learn more… | top users | synonyms (2)

0
votes
0answers
3 views

Please help me to fix the angularJS mentio error

When using angular mentio.js I am getting this strange error "Error: Failed to execute 'setStart' on 'Range': The node provided was null." When entering # in the textarea the suggestions are coming ...
0
votes
0answers
3 views

IE9 and angular routing issues

This will be a bit long, but i hope to make myself clear. Please ask if i've not explained a point well enough. Using the following structure/setup, i've h\got everything to work in all browsers ...
0
votes
0answers
10 views

Getting factory service data to controller for use in view with promises

I am trying to use the Forecast.io weather API to build a weather application with Ionic. I am having a hell of a time getting the AJAX response data delivered to my controller for use in my view. ...
0
votes
1answer
7 views

How to reset an AngularJs filter on init

I created a working filter that filters the data by month. A click on a month name shows correct data. I wonder how to show all data on page load. Actually, no data is shown on page load until I ...
0
votes
0answers
5 views

How fix ui bootstrap modal window in ios then use keyboard

Use AngularJS + UI Bootstrap. If i need use input field in modal ios virtual keyboard not show. How fix it?
0
votes
0answers
7 views

angular google maps double windows

I have an issue from angular google maps windows. I don't know why the windows label come double on the maps. I made in plnkr. I wan't to show all windows label, but it come it in double windows ...
0
votes
1answer
12 views

What event does angularjs use to get a value from text input?

What event does angularjs use to get a value from text input? I thought it's oninput or onchange.
-1
votes
2answers
16 views

folder structure for angularjs for rest api

**I want to build an angular Js Application in which I want to use Angular Js for front end and REST API for back-end data please give me suggestions for directory structure **
1
vote
0answers
14 views

German characters in angularJS live search

German characters in angularJS live search First off, sorry for my bad English, I'm from Austria... I have problem with angularJS live search from MySQL, everything works perfectly except German ...
1
vote
1answer
17 views

Using shared module (between separate modules)

So I have a module I have created that does a kind of "state" routing for me. I made my own little version to get my exact intended effect, and it seems to be working great until I plug it into ...
0
votes
0answers
4 views

remove exif in AngularJS at upload

I have a web application(using AngularJS) in which users can upload a profile picture and before saving the image they can adjust they photo with some cropping tool. The issue is that when I'm ...
0
votes
0answers
6 views

Angular: ng-bind-html ($sce.trustAsHTML) works on MAC, garbled on Windows

<li ng-repeat="description in pass.descriptions track by $index" ng-bind-html="description"></li> The above on MAC gives me: Français However on Windows computers, it is displaying ...
0
votes
0answers
8 views

How to select a file in the controller for angular-upload

I am using angular-upload to save my files. I need to upload a file without selecting it in the view. The file is a pdf that is already saved in a directory. I have the file name already in $scope. ...
0
votes
0answers
11 views

How access $resource Keys in AngularJS Service

I created an angularjs service which provides access to the $resource object containing the request to our RestFulService. angular.module('app').factory("myService", ['$resource', function ...
1
vote
0answers
9 views

UI-calendar recurring event on angularjs

I have tried to implement the recurring frequency on Angular UI-calendar but still didn't get any angular plugin.I need help in creating recurring event.If you can please give any reference plugin or ...
0
votes
1answer
15 views

AngularJS table resized with filter

I have a table and a search bar which will filter the table's data. My problem is that when I type in the search bar a word, the size of certain column will resize. It will then make some weird ...
1
vote
2answers
14 views

Angularjs - url params: When clicked returns to angular vars in the url

<tbody> <tr ng-repeat="message in messages" ng-click="go('pair/{{message.currencyFrom}}/{{message.currencyTo}}')"> <td>{{ message.currencyFrom }}/{{ message.currencyTo ...
1
vote
0answers
16 views

Minify JS, HTML and CSS within Play Framework

I'm trying to minify the JS, HTML and CSS files in my Play Framework project, but can't find a suitable method to do it. At first, I've tried 'Google Closure Compiler' which was supposed to be bundled ...
0
votes
0answers
25 views

Reload directive method after POST in Angular JS

I'm developing an opensource app that uses AngularJS as part of the frontend, due to the way that I want it to work (it's paranoid, deleting and adding content from the dom for protection) I've run ...
0
votes
1answer
18 views

AngularJS: ng-form not working for input validation

I am using ng-form to allow validation of dynamically generated form controls as per this answer but it doesnt seem to work. Is this because it is nested within table rows? The input will go red ...
0
votes
1answer
24 views

An extra input field is added at the footer of the page

I've included textAngular-rangy.min.js and textAngular.min.js in my jsp page (using angular JS in my app). Though no text area is there in that page. When the page is loaded, an unwanted input field ...
0
votes
0answers
9 views

Angular-UI Select2 directive Search functionality not working

I'm using the angular-ui select2 directive. I know it's now deprecated but my application is using this directive throughout and there is an improvement I want to make.Soon, we will migrate to the new ...
0
votes
0answers
17 views

Angular ng-table server-side pagination

I have a problem with server side pagination. I am loading paged data from server. The data loads correct, however the display of the data is strange: e.g. when I move from page 1 to page 2, I can see ...
0
votes
1answer
23 views

Cannot hit server side controller from Angular

When I try to call a server side controller using angularJS I get these two error messages. The parameters dictionary contains a null entry for parameter 'problemId' of non-nullable type ...
0
votes
0answers
12 views

How to prevent ui-route for a particular link in angular?

I tried to do Angular routing in three pages. location.config(function($routeProvider){ $routeProvider .when('/',{ templateUrl: 'templates/listing.html', controller : 'locationList' ...
0
votes
0answers
17 views

Json deserialization of database field and asp.net mvc

Let say I have general table of records (I'm using EF code first) and there can be many different types of details that can be used with this table: class Record{ int Id, int TypeOfDetails, // int ...
1
vote
1answer
13 views

How to inject references in angularjs unit test

I saw two different ways of injecting references in unit tests. Underscore Wrapping beforeEach( inject( function(_myService_){ myService = _myService_; })); or $injector injection ...
0
votes
0answers
20 views

Calendar Pop-up is not working

This is my HTML page <div class="modal fade" id="myModal" tabindex="-1" data-backdrop="static" data-keyboard="false"> <div class="modal-dialog modal-sm"> ...
0
votes
0answers
8 views

Conflict between AngularJS and Thymeleaf

am a newbie to angularJS and Thymeleaf and am experiencing some weird conflict. This is what I have below <input type="text" th:field="*{unit}" value="{{unit.unitID}}" class="unit_value"/> ...
1
vote
0answers
15 views

AngularJS, config phase with asynchronus data

I am currently trying to retrieve data asynchronously (from the database or server), before the module main application is started. Possibly through a provider called in .config. However, according to ...
0
votes
1answer
16 views

How can I place a mask under a modal on my page with AngularJS?

I have HTML / AngularJS code that shows a main content window or a modal on my page. <div id="header"> . </div> <div id="main"> <div id="content" ng-show ..> ...
0
votes
0answers
5 views

ngCordova write file on Android

I'm trying to write file to local storage on Android device, using ngCordova function found on ionic forum. This is how the function looks: $scope.exportClicked = function(options) { var deferred = ...
0
votes
0answers
7 views

Get rich value from Angular intl-tel-input custom directive attribute

I have developed custom directive for using intltelinput jquery plugin. I want to get rich value that contains suc as country and dial code of selected number as following like; ...
0
votes
0answers
4 views

Jquery flexslider 2 integration using angular js with dynamic binding with json

Can any body help me how to integrate jquery flexslider 2 using angular js ng-repeat for slides. My flexslider not working when i converted the jquery flexslider to angular json parsing dynamically.
0
votes
1answer
16 views

Angular moving scope variable from controller to directive

I have created a directive like this .directive('optionLabel', function() { 'use strict'; return { replace: true, restrict: 'AE', template: '<div class="error-msg ...
0
votes
0answers
17 views

make modal waiting for data

i want to display data in modal. the data comes from angular Controller. the modal is not displaying the data. it dosen't wait for the data treatment. how can i make it waiting for the data ? here is ...
0
votes
0answers
5 views

loading ngInfiniteScroll after ajax call

I'm new in angularJS. I'm trying to load images using ngInfiniteScroll. In first step I get names of files, in second I get images by name. I created REST service in spring. I have one problem: GET ...
0
votes
1answer
11 views

How to check if a GET call is not made in $httpBackend

$httpBackend offers methods for check if an HTTP call is made: $httpBackend.expectGET('/auth.py'); I'm testing a service that has an internal cache and I would like to check if it works correctly. ...
0
votes
2answers
24 views

$interval is not allowing me to update my front end

I'm trying to create a landing page where the picture and accompanying caption updates, showing all of the images and captions in an array of objects (pictures with captions). I think it needs to use ...
0
votes
2answers
13 views

Delete ng-model input value in ng-model

I have question about ng-model in ng-repeat. I prepared example. https://jsfiddle.net/0ff3btv2/1/ Basicaly I can create ng-model in input and delete its value by clicking button like this: ...
0
votes
0answers
36 views

angular directive ng-show not working

I have very stright forward angular code,ng-show directive in the below code not working <script ...
2
votes
0answers
14 views

access resolve data on $state.go() with notify false

I have an interactive map, with categories and markers associated. I also have a search form, which allow users to search for markers. When the user clicks on the result he wants to display, I want ...
0
votes
0answers
17 views

Elegant burger menu directive

I have started to develop a burger module, consisting essentially in 2 parts : a "burger-opener" button which opens the menu, most probably an attribute directive including a click event listener, ...
0
votes
0answers
17 views

Make HTML template outside the controller in angularJS

I'm trying to add HTML to google map api v3. It's working but I think it's not the proper manner to do it. My question is : can we put our HTML code in another file or something and call just the ...
0
votes
0answers
12 views

angular sub module route

I have a: main module : kp sub module : kp.venue I want kp.venue to have it's own "route" definitions (for all paths relative to that module). This is what I am trying to achieve in the code ...
0
votes
0answers
15 views

Angular typeahead dropdown issue

So I have this textbox that I am trying to build into an autocomplete textbox. I have created my html like this: <section class="tile-column large-4 columns"> <h1 ...
0
votes
1answer
13 views

load api before dependency injection in angularjs

I want an api to return an Object before injection of module take place in angular.js Basically the Object tells angular which module should be injected or not Api Before injection!!
0
votes
1answer
6 views

validation of views before navigating to other in single page application

I'm new to angular js. I have a form built using bootstrap and also a button is included. button tag is having an <button><a href="#myUrl">Ok</a></button> In single page ...
0
votes
1answer
16 views

Regex helped needed for angular filter which highlights matching text from html

I have this which works but but the regex is matching with html tags, is there any way I could get it to ignore html tags. Could anyone help me to modify the regex expression so my class is only ...
2
votes
2answers
27 views

AngularJS - check for null item in ng-repeat

I am using ng-repeat to display rows in a table and when two items are not null I want to display true in HTML. I've searched but I can't find an expression or ng directive. <table class="table ...