Posts by Danilo • 18 points
6 posts
-
0
votes2
answers47
viewsA: How to register more information in the table
Note that the error you sent right after VALUES is missing a quotation mark You have an error in your SQL syntax; check the manual that Corresponds to your Mysql server version for the right syntax…
-
0
votes1
answer2546
viewsQ: PROV between two spreadsheets
The result I should show in column authors of the production sheet is the name of all the authors who wrote that discipline. I am using the following function =PROCV(C8;'Remanejamento'!C3:D55;2) but…
-
0
votes3
answers96
viewsA: How to get information in a text?
Eai, try to do like this: trechoRetirado= '' + trechoRetirado; and then, trechoRetirado.substring (13); Source:…
-
0
votes1
answer116
viewsA: Sum ng-repeat value Angularjs
angular.forEach($scope.listaOportunidade, function(v, k){ $scope.total = 0; for (var i = 0; i < v.itensQtd.length; i++) { $scope.total += v.itensQtd[i] } }); Eai, you can do a for to go through…
-
0
votes1
answer446
viewsA: Error running unit test in Karmajs
I resolved using this information from this site http://qaru.site/questions/160933/getting-mismatched-anonymous-define-module-when-i-try-running-tests Archive: specs.js define(['angular'],…
-
0
votes1
answer446
viewsQ: Error running unit test in Karmajs
Good afternoon, When running the unit test in Karmajs I have as return the following errors: Using Angularjs with Requirejs, Angularamd and Instanbul. Referenceerror: Can’t find variable: module And…