Posts by Cardoso • 21 points
4 posts
-
0
votes1
answer65
viewsQ: how to take value from an autocomplete and send to the controller (AJAX)
You can receive the chosen value from a field and use this value in a variable in the controller? This is my field: <div class="form-group hidden" id="idnome" > <label>NOME…
-
1
votes2
answers442
viewsA: Help with MVC Pick up checkbox value and send to bool variable controller
Personal in case someone is with the same doubt, I solved in this way: <div class="checkbox dadospessoais"> <label> <input class="dadospessoais" type="checkbox" name="ckNome"…
-
-1
votes2
answers442
viewsQ: Help with MVC Pick up checkbox value and send to bool variable controller
I’m trying to send the value of checkboxwith id, if the checkbox be it true, will create the column. VIEW <div class="checkbox dadospessoais"> <label> <input class="dadospessoais"…
-
0
votes1
answer260
viewsQ: How to know if a div does not have the Hidden class with jQuery
I want to make a denial in the if,in this case below I want to see the div that has NOT the Hidden class. I’m trying this way: function AddFiltro() { if ($("#divcamponiver:not(:hidden)")) {…