Posts by HUGO PABLO • 111 points
13 posts
-
0
votes1
answer68
viewsA: Kill delay() execution using jQuery
I got it, I took a look at the DOC of Jquery, the function stop(), kills the animations execution queue, just use: stop().fadeOut(300); that works beauty!…
-
0
votes1
answer68
viewsQ: Kill delay() execution using jQuery
I’m wearing exactly this: fadeIn(1000) - delay(6000) - fadeOut(1000) (8 seconds) To display an alert for the user, I decided to put in the alert itself a button for the user to give dismiss, using…
-
0
votes1
answer35
viewsQ: PDO eliminates SQL field duplicity
Good guys, I’m using PDO to run my querys. SQL: SELECT Pessoa.IdPessoa, Pessoa.IdPessoa, Pessoa.Nome AS 'Nome', Pessoa.DataNascimento AS 'Nascimento' FROM Pessoa WHERE Pessoa.EstadoCivil = '1' when…
-
0
votes0
answers18
viewsQ: ng-sortable with bi-directional array
need to traverse a array of array and create separate lists using ng-sortable pro user can change data positions. Array() $scope.teste = [{'julio' : 16, 'emerson' : 14, 'aspas' : 13}, {'fernando' :…
-
1
votes1
answer176
viewsQ: bug ng-change with checkbox cheked
The bug is this, I have 2 checkboxes, by triggering the first the other is automatically marked, the second checkbox owns the tag ng-change calling a function in the controller, the problem is, when…
angularjsasked HUGO PABLO 111 -
0
votes2
answers703
viewsA: Calling Jquery function in an Angular controller
I just need to use the functions that are inside the funcs.js inside with my controller.
-
1
votes2
answers703
viewsQ: Calling Jquery function in an Angular controller
I have a file with functions jquery, and I need some functions that are on it to use within controllers at the angle, but always have JS error that functions are not defined. jquery…
-
0
votes1
answer310
viewsQ: Progress bar Angular js
Use the $http from Angular JS to work with web-services, someone knows how to tell me how to create a progressibar using this method? $http.get( "json.php?action=3" + "&id=" + id + "&val=" +…
-
4
votes3
answers752
viewsQ: String with JS Function Name
In javascript, how do I take the value of a string and use as a function call, save in the database which function to use in the onchange of an input, exe: validaData, validaCPF, diaUtil. Example:…
javascriptasked HUGO PABLO 111 -
2
votes3
answers4764
viewsQ: Expression within ng-disabled
I have a problem with angular expression So it doesn’t work ! checked || ! checked2 <body ng-app=""> <label> Click me to toggle: <input type="checkbox" ng-model="checked">…
angularjsasked HUGO PABLO 111 -
1
votes1
answer50
viewsQ: Controller by file in angular js
(function () { 'use strict'; modulo .controller("CarregaCamposController", CarregaCamposController) .service("CarregaCamposService", CarregaCamposService); function CarregaCamposController($scope,…
-
1
votes2
answers1655
viewsQ: Function append vs javascript
I have a page that generates a form dynamically using append('texto html'); These inputs that I Gero after loading the page completely, I cannot by them invoke functions js created in the page…
-
1
votes1
answer121
viewsQ: Using connection obj in another class
<?php ob_start(); # Dados de Conexão com o Banco de dados Principal $con_bd[banco] = "teste"; $con_bd[login] = "teste"; $con_bd[senha] = "teste"; $con_bd[server] = "teste"; $error = ""; $con =…
phpasked HUGO PABLO 111