Posts by Eduardo Schettini Guimarães • 9 points
5 posts
-
0
votes1
answer106
viewsA: How to duplicate or clone a DIV in Java Script and read all elements in ASP.NET C#
Good a solution to the problem. function newGuest() { let clone = $("#guest1").clone(); let count = $("#Guests [id^=guest]").length; clone.attr("id", "guest" + (count + 1));…
-
-1
votes1
answer106
viewsQ: How to duplicate or clone a DIV in Java Script and read all elements in ASP.NET C#
Hello, I have a guest form that I need to automatically increase the fields according to the completion. The code is: <div class="form-row" id="Guests"> <p><strong>Guests…
-
0
votes1
answer69
viewsA: How to update data in Google Charts with Json
I finally found the problem. My site is in ASPX and I ended up putting the send dates to Javascript button inside the ASP form, this way, every time I click it gave refresh the whole site and lost…
-
-1
votes1
answer69
viewsQ: How to update data in Google Charts with Json
I have a problem using Google Charts and Json. In this site when entering two inputs (Data1 and Data2) are filled with the first day of the month and last day of the month respectively. Then he…
-
1
votes1
answer80
viewsQ: Bringing Query and Multidimensional Array
I have the need to create an array more or less like in the code below: $documento = array(); $campo = array(); array_push($documento, "1", "CPF"); array_push($campo, "1", "Nº CPF",…