Posts by Prisley • 1 point
3 posts
-
0
votes1
answer161
viewsQ: Turn serialized inputs into JSON
In a datatable there are some columns with inputs. If you click the Submit button I will serialize the inputs of the lines that have checkbox marked. The return of the serialize:…
-
0
votes1
answer67
viewsA: A question regarding the use of POST in communication between Javascript/AJAX and PHP?
Using the POST, your ajax would look like this: $.ajax({ url: 'suapage.php', type: 'POST', data: {var1: "var", var2: "var2", var3: "var3"}, //dados enviados via POST success: function(e) { } });…
-
0
votes1
answer611
viewsQ: Take input values inside datatable
I own in an HTML a datatable and on each line I have 3 inputs (text, datepicker and select) and a button, which will send to PHP, to record what was typed or selected in inputs from that line. What…