Posts by edilcabral • 1 point
6 posts
-
0
votes0
answers31
viewsQ: Jquery for some reason does not save all variables
Guys I have this Jquery that records all these variables of a form in Asp.net mvc. My problem is that it is not saving all variables. It records about half. It is stopping in the proprietary stage.…
jqueryasked edilcabral 1 -
0
votes2
answers26
viewsA: Problem to record radiobutton in db with Jquery
Now another problem has appeared. I have this Jquery that controls my fieldtooltip: !function (e) {e('input[type="radio"]').click(function () { for (var t = e("input[name='" + e(this).attr("name") +…
-
0
votes2
answers26
viewsA: Problem to record radiobutton in db with Jquery
Guys I think I solved. in this part of Jquery: var sexo_segurado = $("#Sexo_Segurado").val(); just fix it to: var sexo_segurado = $("#Sexo_Segurado:checked").val(); that works.…
-
0
votes2
answers26
viewsQ: Problem to record radiobutton in db with Jquery
I have a form where the data placed on it is recorded in the db by a jQuery, but we radiobutton cannot save the item I select. Below a part of my form. On the radiobutton Sexo_Segurado that I have…
-
0
votes1
answer63
viewsA: Entity Framework (Populating tables)
I put it that way. It worked out nice: using System; using System.Collections.Generic; using System.Data.Entity; using System.Data.Entity.Migrations; using System.Linq; internal sealed class…
-
0
votes1
answer63
viewsQ: Entity Framework (Populating tables)
What is wrong with my project? When I try to give an Update-Database error message appears (The underlying provider failed on Open). When I remove the items I want to add, for example,…