Questions tagged as 'angularjs'

2
answers

How to implement features of the Angular?

A short time ago I have studied AngularJS through materials like this; Online Course on YOUTUBE about AngurlaJS > > > > CLICK HERE. So what he teaches shows that we should link the angular.js file according to video lessons;...
asked by 20.05.2016 / 14:27
2
answers

Call database data with $ http get

I'm not able to call the database with the method below: <div class="container" ng-app="appCat"> <div class="row" ng-controller="appCatCtrl"> <table class="table table-striped"> <tr>...
asked by 19.03.2017 / 11:41
1
answer

Datepicker of angled material does not work

I'm using Angular Material in a project and need to collect the user's date of birth in the registry, I'm trying to use Datepicker of Material , but the field does not even appear on the screen. Am I doing what's wrong? H...
asked by 12.09.2016 / 13:24
1
answer

Replicate information through the columns of the JS Angular table

I have a table where I need to duplicate the table columns when the ID change in the received array. The array consists of result=[{"id":"1","Dia":"250.0","inicial":"1050.0","final":"1050.0","DIAS":"800.0"}, {"id":"1","Dia":"250.0","inicia...
asked by 27.10.2015 / 13:47
2
answers

Why function is returning undefined [closed]

I'm trying to get a json to return the function and associate it with a variable, so I take the need to structure the data received with the page from within that function and I can work on another function, but it's not working. being undefi...
asked by 27.10.2015 / 18:07
2
answers

Controller does not see ng-model of Angular JS

The CreateCtrl controller is not seeing the ng-model of the input of my form. I can pass values from the controller to the view but I'm not getting the reverse. Where am I going wrong? Controller: .controller('CriarCtrl', function ($sco...
asked by 19.10.2015 / 21:54
2
answers

How to do redirect using AngularJs

I'm using angularjs , and need to redirect to another page inside my controller. How do I do this? Here is the code for my controller: meuController.controller('Controller', function ($scope) { $scope.save = function(){ $scope....
asked by 31.03.2014 / 17:34
1
answer

Console Errors Warning

The following warnings are appearing on the console with chrome: "Uncaught TypeError: $ is not a function bootstrap.js: 29" "SyntaxError: Unexpected token [angular.js: 12330" Follow my code: <!DOCTYPE html> <html ng-app="flux...
asked by 10.11.2015 / 11:59
2
answers

Break line correctly in a List with Data Binding AngularJS

I have a list of comments where I display some data. But when the comment is too large the list is strange because the line break does not happen correctly. Example: Hereisthecode:<divclass="jumbotron"> <div layout="row" layout-ma...
asked by 26.11.2015 / 14:41
1
answer

Is there performance difference between ng-bind and {{}} (interpolation)?

I realized that in Angular we have two ways of displaying the values in the DOM. One is using the {{}} keys, and others, is using the ng-bind attribute. Example with braces: <div ng-repeat="moderador in ['bigown', 'rray'...
asked by 04.08.2016 / 22:27