Posts by William de Castro • 83 points
3 posts
-
1
votes1
answer417
viewsA: How to dynamically position a div with content within a dynamically created div?
Dude, at runtime, he’s not going to add why at the time he’s reading the DOM, he’s not going to find the element you’re identifying to give the append. For this to work, this div should already be…
-
4
votes2
answers598
viewsA: How to put a click event in a primitive drawn form?
Dude, since canvas doesn’t create the elements in the DOM, I guess I’d have to map the buttons.. Like this: $(document).ready(function() { $('#meu_canvas').click(clickCanvas); }); function…
-
3
votes3
answers2450
viewsQ: Remove list item based on property value
I have a list of objects, objects have the following properties public class oItem { public decimal nit_codit { get; set; } ... etc } So I have the list of objects List<oItem> PlItens = new…
c#asked William de Castro 83