Posts by Ricardo Chomicz • 127 points
20 posts
-
0
votes0
answers53
viewsQ: Upload Angular/Laravel Project to Hostgator Server
I already searched enough and could not run the project on the server (Hostgator). I built the angular application where it is in a js folder (inside the public of the Laravel). I moved the…
-
0
votes1
answer56
viewsQ: Search by ngFor date range
I need help from someone, I looked around a lot more I couldn’t find. I have two Datastart and Datafim fields and I need to filter on ngFor to filter the selected dates. Example *ngFor="Let order of…
-
1
votes1
answer141
viewsQ: Edit modal record with Angularjs
I have a modal to edit user and when you have ng-model in input it does not display the value to edit. What I might be doing wrong. $scope.updateUser = function(userId){ var id = userId;…
angularjsasked Ricardo Chomicz 127 -
1
votes0
answers52
viewsQ: Move to ul empty sortable jQuery
I have a page with 3 ul sortable, I can’t move the div to empty ul, they could check my code. In the example image I cannot move the content of the div Prospect to the empty ul Negotiation and…
-
1
votes1
answer151
viewsQ: ngModel does not display dynamic field value
In a function that includes dynamic fields, I am unable to display the product value when typed. If I do only with an input displays normal value but with dynamic fields I cannot display, follow the…
angularjsasked Ricardo Chomicz 127 -
0
votes2
answers514
viewsQ: Sum values with Angularjs
I am trying to add two values. Example value 150.00 and value 50.00. I tried to do so {{value + value}} and is returning 150.0050. No way to do the sum this way? ng-repeat value and input field…
angularjsasked Ricardo Chomicz 127 -
0
votes0
answers34
viewsQ: Displays value as Angularjs filter
I made a page to query records and I have two fields search by name and search by start month and end month. Example: I would like to select the months and a div display the total value of that…
angularjsasked Ricardo Chomicz 127 -
0
votes1
answer116
viewsQ: Sum ng-repeat value Angularjs
How do I add in ng-repeat the amount itensQtd when it’s the same (id) column itensOportunidade? As an example of the image. /* Lista oportunidade */ $scope.listaOportunidade = []; var…
angularjsasked Ricardo Chomicz 127 -
0
votes2
answers400
viewsQ: Filter combobox search Angularjs
I have the SELECT multiple with options for query, only when selecting an item does not return anything, if someone can give a strength I thank you. /* Retorna operadoras */ $scope.operadoras = [{…
angularjsasked Ricardo Chomicz 127 -
0
votes1
answer60
viewsQ: ng-repeat with mysql database data
I have 02 tables in the bank (Prospect and opportunity) the two tables have the prospectId. As I do to display in ng-repeat. I was trying to Inner Join in the php query and returns this error in the…
-
1
votes1
answer106
viewsQ: Select2 Bootstrap Angularjs
Does anyone use the Select2 Bootstrap in Angularjs? I have a problem... when I click on the drop-down list (options) displays the correct value that comes from the bank, but in the view always…
-
0
votes1
answer166
viewsQ: Pass ID to modal via ng-repeat Angularjs
How to take the line ID (Prod.productId) on ng-repeat and switch to modal to update the record. It must be something with ng-click on the button but I’m not finding any example. Someone could give a…
-
0
votes1
answer500
viewsQ: How to get Angularjs URL parameters
How to get parameter of the URL with Angularjs. If anyone has any example I thank. $scope.pegaCNPJ = function () { var cnpjs = $("#prospectCNPJ").val().replace(/[^\d]+/g, '');…
angularjsasked Ricardo Chomicz 127 -
2
votes1
answer706
viewsQ: Download multiple files
There is the possibility to download multiple files in a single link. I have tried many ways and I have not achieved anything if someone can give a strength. In the image the termosPedidoId (78)…
phpasked Ricardo Chomicz 127 -
0
votes1
answer31
viewsQ: Recording Null Angularjs Database
Someone can tell me what is wrong, because it is recording in the bank an empty line and a line with the form data. $scope.submit = function () { var formData = { 'clienteCNPJ': $scope.clienteCNPJ,…
-
1
votes1
answer141
viewsQ: Browse input ng-repeat fields Angularjs
/* Retorna produtos banco de dados */ $scope.produtos = []; var carregaProduto = function () { $http.get("app/models/retornaProduto.php").then(function (response) { $scope.produtos = response.data;…
-
0
votes2
answers110
viewsQ: Save data from array
Is there a more simplified method for this, or is this the right one? There are some tables that I have several fields and there is a little more work. My question is whether I have to declare all…
phpasked Ricardo Chomicz 127 -
1
votes1
answer526
viewsQ: Calculation using Angular JS
I managed with the help of Esmigol to solve one of the problems and I am insisting here because I did not find anything on the internet that can help me. There are few examples of what I need on the…
-
0
votes1
answer457
viewsQ: Redeem ID in Ajax return modal
I’ve searched a lot more I could not get anything like that. I have a registration that returns lastInsertId() and this registration is done with Ajax. No Success (Ajax) after completing the…
-
1
votes1
answer320
viewsQ: Dynamic form autocomplete
I have a form that includes lines dynamically. In this form I have a field autocomplete where I select the product and add the product value to another input. My problem is this: if I include two…