Posts by Thiago_Espanta • 26 points
3 posts
-
0
votes2
answers283
viewsA: Modifying a list item shared by multiple threads
According to this doubt your problem may be related to closure foreach: Try using this code to see if the problem is fixed: public void Associar(List dados) { List tasks = new List(); foreach(dado…
-
1
votes2
answers3098
viewsA: How to fire pure javascript keydown event
A working example: // Add um listener document.addEventListener("nome-do-evento", function(e) { console.log(e.detail); // Exibe "Exemplo do evento" no console }); // Criando o evento var event = new…
-
0
votes2
answers430
viewsA: Hidden attribute in <span></span> element does not work?
According to the code Voce sent in fillde, its span tag should have something like this: <span class="glyphicon glyphicon-refresh" style="display:none"></span> For more details:…