Questions tagged as 'jquery'

1
answer

keep all records for every AJAX call in VB.NET

It sent through AJAX values according to the checkboxes that a user selects to another page2 that receives them, and processes them to a BD, the problem is that I have a cycle each with jquery for the sending of the value that the user selected...
asked by 30.06.2016 / 18:57
1
answer

Problem with ajax response

I'm doing a project in Symfony and when I send the data by ajax the answer I generate with json_encode() gives me error This is my ajax code $.ajax ({ data: {"id": id_category, "type": "add_row_interno"}, type: "POST", da...
asked by 14.07.2016 / 15:40
2
answers

Editable grid with Jquery and PHP [closed]

I have developed a PHP form with several fields. All of them type text box or drop-down boxes. I need to add a new field of type "table". Inside the database I will store it as an array or XML. This will be the format of the form (see the Tea...
asked by 19.08.2016 / 15:02
2
answers

Load data by ajax with Jquery and place parameters in url

I have a search form that I want the results to return to me with ajax in a single sector without loading the whole page. I'm using the function $.get() of Jquery, but the problem would be that when I return the results of the search a...
asked by 22.08.2016 / 14:52
1
answer

calculate values of a dynamic table

What I want to do is calculate the values of the SubTotal field, since this is the result of the multiplication between the values of the Price field and the value entered in field text Quantity . In addition to calculating the VAT of the s...
asked by 24.06.2016 / 19:52
1
answer

put the values of the selected fields to null

I am in a project in mvc I have the following. <script> $(document).ready(function () { $("#selecctall").change(function () { $(".checkbox1").prop('checked', $(this).prop("checked")); }); }); </script> <table st...
asked by 23.06.2016 / 10:00
2
answers

Html Table, Get text from one cell by clicking on another

I develop an Asp Mvc web application, in one of the views I have a table with the following structure: <table id="grupoActividades" class="ctrlTable table table-striped table-bordered table-hover" cellspacing="0"> <thead class...
asked by 30.05.2016 / 15:28
2
answers

Reset ajax form append

Good, I'm with little problem. When I open the field to edit .. I load the current image, and below the input file .. When I change it and I submit, everything works perfect .. My problem is .. That when I try to edit another field, the modal op...
asked by 09.06.2016 / 16:44
2
answers

Pass selected value from DropDownList to modal window asp mvc

I need to pass the selected value of a DropDownList loaded by means of a SelectList to a modal window, for that I am using this line.           @Html.LabelFor(model => model.CompañiaId, htmlAttributes: new { @class = "control-label co...
asked by 01.04.2016 / 04:56
1
answer

Change class and name to an input depending on a radio input with jquery

Having a code like this: <input type="radio" id="campo_1"> <input type="text" class="hidden" name="campo_1"> <input type="radio" id="campo_2"> <input type="text" class="hidden" name="campo_2"> I want,...
asked by 02.01.2017 / 09:19