Posts by Larissa Mourullo • 417 points
14 posts
-
6
votes3
answers2015
viewsQ: How to create a controller service?
Hello, I would like to know if it is possible with this code to create a service. Because all the videos I see they only create services for things that will be duplicated in code and so on or from…
angularjsasked Larissa Mourullo 417 -
0
votes1
answer614
viewsQ: Show only selected checkbox
Hello, I would like to know how I can do to when clicking the completed tasks button it just present me the selected tasks in the list. Button Completed Tasks: <div class="form-group…
-
0
votes1
answer242
viewsQ: Create a directive
Hello someone could help me, I’m just starting my teachings in angular and would like to know how I would create a directive for the list of categories and tasks. I have no idea what could be done,…
-
3
votes2
answers229
viewsQ: Check data according to the ready information
I would like to make this form check the following data by clicking "Confirm" and if any of them is correct it will go to the next page. MOCK: $scope.cliente = [{ nome: "nomeedit", senha:…
-
0
votes2
answers1026
viewsQ: How to use . Directive, modularization and layer splitting? Angularjs
NOTE: Until I understood everything, the problem is that I can not do with this code the information that I passed, like nothing. And when I do not work. Can someone please help me?? Hello, I have a…
-
2
votes2
answers81
viewsQ: Display most important information from a JSON file
How do I present only some of the most important information on a list such as the following example? { "userId": 1, "id": 1, "title": "DRF - Delegacia de Roubos e Furtos", "endereco": "Praca Maua,…
-
0
votes1
answer58
viewsQ: Doubt in app creation
I’m creating a mobile app phonegap/Cordova in which I need to search the name of a location, phone and address and find it on a map. I am in doubt if I use phonegap/Cordova Geolocation or the google…
-
1
votes1
answer170
viewsQ: Add to a category
I am unable to make the new tasks added belong to the selected category in select. angular.module('TarefApp', []); angular.module('TarefApp') .controller('TarefasController', function($scope) {…
-
3
votes1
answer255
viewsQ: Error installing phonegap by npm
This is the problem that has occurred, I tried to install Gyp and did not solve, someone would explain me what is happening please. [email protected] install…
-
0
votes2
answers204
viewsQ: Move task - Angularjs
Hello, could someone explain to me how to do when I check the checkbox of the activity "Incomplete" it be sent to the activity list "Complete"? angular.module('TarefApp', []); // Code goes here…
-
0
votes1
answer144
viewsQ: Cannot repeat when adding new item to a list
Hello, I would like your help. I am creating a page with Angularjs to add tasks to a list. And I wish they wouldn’t repeat it, but unfortunately I’m not able to do it and I can’t find any…
-
6
votes2
answers894
viewsQ: Javascript does not work if it is placed in the head tag
Guys, I need the "Tag Script" inside the "Tag Head" but unfortunately it’s only working when I put it at the end of the html. Please, if anyone knows the reason why this is happening, please help.…
-
2
votes1
answer428
viewsQ: Add "Input List" in Java Script
I’m having some difficulties with Javascript. I want to add some fields of my "Input List" and multiply others by clicking on a "Calculate button", thus informing a value in an "Input Text". Nothing…
-
5
votes2
answers5706
viewsQ: Password check
Hello, I’m starting to learn Javascript and I’m not being able to validate my code if there are 3 characters in uppercase, 2 numbers and 1 special character in my input. I would like to know what I…