Posts by Jamilson Junior • 71 points
3 posts
-
1
votes1
answer51
viewsA: Check if a specific item is selected in one of the combos on the page
You can do this using jQuery as follows: function ValidarAcao() { var algumItemCancelado = false; $('select').each(function(i, e){ if ($(e).attr("id").indexOf("status_anterior_") > -1 &&…
-
0
votes2
answers123
viewsA: How to make the parent relation between two select elements?
As the problems depend directly on the area, when loading them you will have to specify which area you selected. The first change would be to load the problems: public function…
-
3
votes2
answers7845
viewsA: How to resolve "Could not create SSL/TLS Secure Channel." error?
Germano, try to enter the code below before sending the request, right after the envelopment: ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; I hope I helped, good luck.…