Posts by Ita • 25 points
10 posts
-
0
votes0
answers38
viewsQ: pass selected input from one hmtl to another
Good afternoon Gentlemen., I have a collection that is already visible by two distinct html’s in my app, however in the first html I go through the collection through an ng-repeat and when I select…
-
1
votes2
answers719
viewsQ: How to pass data from a selected ng-repeat item to another view
Good morning Gentlemen., How can I pass data from an item that has been selected within an ng-repeat list to another view? Here is an excerpt from the first view: <div ng-repeat="jogador in…
-
0
votes1
answer46
viewsQ: Calling Service from a then() resulting from another service
The situation is as follows from the controller equipecontrol, I’m walking a forEach, inside a then(), which has previously achieved a result by performing the function getEscalacao(), that is…
-
1
votes0
answers130
viewsQ: Angularjs - Create a single list taking data in more than one class
Ladies and gentlemen, good afternoon! I’m trying to create a list to be displayed in a view, to fill the list part of the information I pick up in a certain class (Escalation) and other information…
-
0
votes2
answers362
viewsQ: How to pass content from JSON Object to a controller - Part 2 - Using Parse.Query
Sorry to come back in almost the same topic, but now when I use a Parse.Query to get my data in service.js, I’m not able to pass JSON with content to the controller(app.js), follows below excerpt of…
-
0
votes1
answer267
viewsQ: How to pass JSON Object content to a controller
How do I pass the contents of the service JSON object to controller. At the moment I do tests with the following codes: Controller(app.js) example.controller('equipecontrol',…
-
0
votes1
answer39
viewsA: How do I Print a Parse.Query result in a View?
Felipe, thank you so much for your help so far, in this final part I discovered what was missing, follows below the treatment I did in my angular code: $Scope.nameCrac = { name:…
-
0
votes1
answer39
viewsQ: How do I Print a Parse.Query result in a View?
I have the following situation, in View: {{nomeCraque}} and in the Angular: $scope.nomeCraque = {}; var EscalacaoObject = Parse.Object.extend("Escalacao"); var query = new…
-
0
votes2
answers921
viewsA: How to pass parameters in executed function via ng-click when it is in a list of buttons?
Glauber, I discovered the reason for the new error, was the region where was started the registration object, I had put in the wrong place, I made the change of this location and now the system…
-
0
votes2
answers921
viewsQ: How to pass parameters in executed function via ng-click when it is in a list of buttons?
Using the IONIC framework I have the following situation, in an index.html there is a list of input items where the user will inform their respective username, e-mail and password and in a certain…