Questions tagged as 'angularjs'

2
answers

Pickadate Angular - Translation

I'm using the Angled pickadate only that it is in English, I need to leave it in Portuguese, could anyone help? Here is the code: $('.datepicker').pickadate({ selectMonths: true, selectYears: 15, language: 'pt-br' }); I p...
asked by 15.04.2016 / 19:44
1
answer

Error in the configuration of RouterProvider of AngularJS

I imported the angular-route.js and made the following configuration: <script type="text/javascript"> angular.module("layoutxepa",["ngRoute"]); angular.module("layoutxepa").config(function (serialGeneratorProvider) { serial...
asked by 28.09.2015 / 17:10
1
answer

How to display an item from an enum in my table using AngularJs?

I have a table where I make a ng-repeat , so far normal. <tr data-ng-repeat="item in itemsconfiguration"> <td>{{::item.Description}}</td> <td>{{::item.Order}...
asked by 29.09.2015 / 20:57
1
answer

Client sending String [] instead of BigDecimal to server when changing

When it's a new record it works quietly , the problem is in change . I have a A object that is the master, another B object that is a ArrayList tail and master A detail, and last , a C object that is ArrayList and detail o...
asked by 28.09.2015 / 16:03
1
answer

Ion-footer-bar on the ion-list?

I'm creating an endless list in the ionic . I have ion-footer-bar in the index and after that list bring all information from the Webservice in the last record ion-footer-bar is over the registry. I'm trying to use $scope.$broa...
asked by 22.12.2015 / 01:09
1
answer

Adding Admob to Ionic?

I'm trying to put monetization in my ionic app. Searching, I found some examples but I'm not getting it to work. The banner simply does not appear. Follow this example , which is quite simple, but I can not get it to work, the banner does no...
asked by 15.12.2015 / 17:22
2
answers

Does not show the 1 row of the empty array using angularJS asp.net mvc?

I have the following code: <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!--inserindo a meta tag de keywords onde definimos as palavras chaves--> <meta name=...
asked by 30.12.2015 / 03:07
2
answers

Ajax request data with AngularJS is not arriving at the action method

I know this is very basic, but I'm starting now. I'm creating a neighborhood registry, using AngularJS, my backend is in C # with ASP.NET MVC. My method is called by view , but does not get JSON: This is my save method on BairroControlle...
asked by 23.12.2015 / 12:55
1
answer

How do I make this directive return in ng-bind the sum of the results?

angular.module( 'isfModFinance', []) .directive( 'isfModFinance', function() { var validElementScope = angular.element('<div>{{ model.input }}</div>'); var validElementTotal = angular.element('<div>{{ model.total }}&...
asked by 04.09.2015 / 00:18
1
answer

Dependency injection in service

Can I do dependency injection on services? for example, I tried this: service 1 var crypto = angular.module('crypto',['ngRoute']); service 2 var teste = angular.module('userlog',['crypto']); teste.service('userlogService','cryp...
asked by 20.10.2015 / 21:20