Posts by user11644 • 64 points
3 posts
-
0
votes2
answers253
viewsA: Scroll accompanies mouse with datagrid
You have to remove the css from the table’s style and use it separately to create the overflow effect and must contain table display: block <style> table tbody, table thead { display: block; }…
-
1
votes3
answers3565
viewsA: Use ajax with Actionlink
Create an id for your Actionlink with jquery search for id can post/get <ul class="nav" id="side-menu"> <li> <a href="#"><i class="fa fa-shopping-cart fa-fw"></i>…
-
3
votes2
answers7019
viewsA: Pass parameters through jquery to controller
Create a json object to receive the values. //Obj var parametros = { _txtCnpjPesquisa: $('#txtCnpjPesquisa').val() , _txtTecnicoObs: $('#txtTecnicoObs').val(), _txtObservacao:…