Posts by Nilson Martins • 11 points
4 posts
-
0
votes1
answer33
viewsA: How to list values using ng-repeat using Angularjs and Jsonresult ASP.NET MVC?
I found this solution. <tbody> <tr> <td>Documentos</td> <td>Comandos</td> <td><span ng-repeat="(key, value) in File.FileCTB track by $index">…
-
1
votes1
answer54
viewsA: How to check and convert Ienumerable values from a database query?
The solution I found was to create another attribute called "Switchstatuspagto" in my model that makes a state switch case and I call this attribute directly in my View. public string…
-
0
votes1
answer54
viewsQ: How to check and convert Ienumerable values from a database query?
I have one that returns a table in Ienumerable and I have a certain column that returns values "A" for Active, "C" for Canceled and so on. I would like to convert these values to the correct one…
-
0
votes1
answer33
viewsQ: How to list values using ng-repeat using Angularjs and Jsonresult ASP.NET MVC?
Good Friends! I am working on a MVC application that returns JSON to an Angularjs controller, it turns out that these values are unit values and lists. And when rendering in the view, only unit…