Posts by Anderson Francisco • 1 point
2 posts
-
-1
votes2
answers71
viewsA: Get null fields from the database with LINQ
I’m not sure I understand, but, try to change the school Join to left Join so it brings all managers and if n has school it puts null if I am not mistaken var listaRelatorioEmail = ( from ge in…
-
0
votes2
answers1301
viewsA: How to expect everything to load before performing a function?
try to use the done function after the click event: var count; $('input:checkbox').click(function(){ if( $(this).is(':checked') ){ count++; }else{ count--; } }).done(function(){ $('#count').html(…
javascriptanswered Anderson Francisco 1