Questions tagged as 'angularjs'

1
answer

Login Screen with Angularjs

Good evening, I'm having trouble making the login screen in my application Index.html <body> <div ng-include"'dashboard.html'"></div> <div ng-view></div> </body> If I put the form of login insid...
asked by 22.08.2015 / 02:12
1
answer

AngularJS get the $ scope and concatenate in a URL

app.js angular.module("FipeApp", []); angular.module("FipeApp").controller("FipeAppCtrl", function($scope, $http) { $scope.app = "FIPE APP"; $scope.tipos = [{ nome: "Carros", id: "carros" }, { nome: "Motos", id: "mot...
asked by 23.11.2015 / 20:26
1
answer

How to trigger share options in angularjs with ionic?

Good evening I have a mobile app, I have seen in some apps that when I click on share it appears the options of the installed apps like facebook on the phone to share would like to know how I can trigger these options to do sharing for exampl...
asked by 24.09.2015 / 00:24
2
answers

Use AngularJS to pass parameter to Jquery

I need to change the alerts template for my web system. For this I am using a JQuery plugin, however, I need to pass a parameter to my JQuery function as this would be my model that is already being used in AngularJS. In this function when cl...
asked by 04.08.2015 / 13:47
1
answer

Angular.js configuration not working

I have already swept the internet for a solution, but in no way does the angular work on my project. In the project in which I want to use it I have existed many javascript imports I do not know if this might be the problem, but below I illust...
asked by 20.06.2015 / 04:54
1
answer

Recover ClassName using .Css () from AngularJS

I have a page that displays several divs that when clicked retrieves and displays the attributes used to create them: float , border , width , and so on. I'd like to recover classname , but I'm not getting it....
asked by 12.05.2015 / 16:56
1
answer

Assign function return to a variable using angularjs $ promise

I have an angled factory that returns json data. Within a controller I invoke the same to get the data, the point is that invoking the same inside the controller object exists only to use a console.log , if you assign it to a varia...
asked by 27.03.2015 / 14:08
1
answer

Reload an AngularJS table from time to time

My AngularJS page displays a table with data coming from a JSON. What I want is for the table to be updated from time to time because the data is updated second by second and I display only the last 10. <tr ng-repeat="linha in linhas">...
asked by 02.07.2015 / 21:13
1
answer

Broadcast is executed once but the event is called 2 times

I have the following "broadcast" inside a "directive": console.log('a emitir...'); $rootScope.$broadcast('olamundo', params); In my controller I have the following code: $scope.$on('olamundo', function (event, args) { console.log('a e...
asked by 05.03.2015 / 21:07
2
answers

Fill form dynamically with angularJS

In the system that I'm developing, it will have a input field for the user to search if such a CPF already exists registered in the Database, if I have I want to show all the data of that client in an already completed form This is t...
asked by 17.08.2015 / 00:46