Posts by Jkzari • 41 points
4 posts
-
0
votes5
answers8190
viewsA: Onclick event in image
apart from the link you could do so: <img src="imagens/search.png" onclick="ocultaForm()" style="cursor:pointer"/>
-
2
votes3
answers112
viewsA: DOM search for positive name and value
Try it this way: $('input[name=FLG_SEXOX_CLIEN][value=FLG_SEXOX_CLIEN]:checked').trigger("chosen:updated"); I do not understand very well what you intend to do, because it seems to me that you are…
-
1
votes2
answers1717
viewsA: Hide/Display text fields in view
Vitor, add this line that should work: @Scripts.Render("~/bundles/jquery") Follow the code I used to test: <div class="title"> Selecione a Unidade: <select id="Unidade">…
-
1
votes2
answers1717
viewsA: Hide/Display text fields in view
I believe you need to change only in the View itself, hiding the fields when the user select some option for the Drive DDL <script> $(document).ready(function(){ //Escondendo campos quando…