Posts by Evilasio Dias Rocha • 21 points
2 posts
-
0
votes2
answers8938
viewsA: Function calling $.getJSON() returns Undefined
I have a similar problem, for 3 days I fight and nothing! javascript code var readUrlHome = "/Home/Lergrafico/"; var barChartData; function getJsonData(idIndicadores, idUgbs) {…
-
2
votes3
answers3818
viewsA: Update an item from a generic list to a specific item
You can create a crud to take care of the list :)/ like this ó private List<Obj> listaDeObjetos = new List<Obj>(); public void Add(Obj obj) { listaDeObjetos.Add(obj); } public Obj…