Posts by Yehudi Mikhael • 75 points
8 posts
-
1
votes2
answers480
viewsA: Check if Array is empty Ng-Switch
<div ng-repeat="p in ctrl.currentreport.parameters"> <div ng-if="!p.dataType"> Não tem dados </div> <div ng-if="p.dataType"> <div ng-switch="p.dataType"> <div…
angularjsanswered Yehudi Mikhael 75 -
1
votes2
answers480
viewsQ: Check if Array is empty Ng-Switch
I check a parameter with an array that may have values it or not. I have an Ng-Switch does a check on this array. I wish that when it had no value show a Message. I got to do the…
angularjsasked Yehudi Mikhael 75 -
0
votes0
answers94
viewsQ: Ng-model with Button
Good morning, I loop to pick up "name" in an array and each "name" has variables with information. I need the ng-model to receive the "name" value when I click on the "button" so that I can make a…
angularjsasked Yehudi Mikhael 75 -
0
votes1
answer90
viewsQ: How to print the prefixes together with the array?
I would like a help to print an array with its prefixes. this.prefixo = [ { "E01":[{"name":"Teste01"}], "E02":[{"name":"Teste02"}] } ]; I would like to print the prefixes and the names related to…
-
1
votes0
answers23
viewsQ: Problem with ui-router in Angularjs
I’m in Trouble when I’m trying to make a GET on the API to get information. The problem is that the webserver is not Calling the API. I must Fill in the ng -model field named. The following part of…
-
0
votes1
answer98
viewsQ: Problem with ui-sref
I’m having trouble making a POST using ui-sref. I need to call a controller passing an ID where it will return me the recorded data in the database. Works great when using route, but when I use…
-
1
votes0
answers164
viewsQ: Problem to configure angulajs in Nginx
I am not able to configure the angulajs in Nginx. I am using a Centos7 linux machine and I would like to configure the angular to be able to learn. Follow the Nginx.html configuration file user…
-
3
votes1
answer7943
viewsQ: Pass parameter to a C# MVC Controller
I am learning programs in ASP.NET MVC C# and would like to know how I pass a data from a textbox to a controller. That is, I want to enter a value(id) in the View Index in a textbox and when I click…