Posts by Júlia Larissa Schultz • 66 points
4 posts
-
2
votes1
answer56
viewsA: How do I pick up php variables and move to a different JS file with ajax?
In your PHP function, you can return something like this: return new JsonResponse( [ 'success'=>true, 'nome' => $nome, 'idade' => $idade, 'endereco' => $endereco ] ); and in JS you…
-
0
votes1
answer383
viewsQ: Row with Details in Datatable
Colleagues, I initialized the datatable to not show any information, and put a click event to display the details of each line. However, when entering this click event, the datatable is modified and…
asked Júlia Larissa Schultz 66 -
3
votes0
answers431
viewsQ: Number of pages printed with window.print()
The report I am working on contains tables and graphs, which on the screen are being displayed normally. But when printing the report with the function window.print(), the report is not being…
javascriptasked Júlia Larissa Schultz 66 -
0
votes0
answers65
viewsQ: Multiple submits in one form
I have an "Export" button that sends the form data via Post. I need that this data can be sent several times without updating the page, but the browser is blocking more than one "Submit" of this…