Posts by Renato Nogueira • 19 points
4 posts
-
0
votes1
answer185
viewsA: window.history.back()
To those with the same problem the solution was to remove the readonly of the fields and did the lock via css as below: input[name="nome"] { pointer-events:none; outline:none; background:#eee;…
-
-1
votes1
answer185
viewsQ: window.history.back()
I have a page that has a form with some data and another later page that has a back button, the idea is that when the user uses this button he does not lose the data that was entered in the form.…
-
1
votes3
answers123
viewsA: Format value for date
Nicholas, You can use a common substring to do this, if your case is just string formatting, follow below: substr("20181107",0,4)."-".substr("20181107",4,2)."-".substr("20181107",6,2)…
-
0
votes1
answer133
viewsQ: Keep data when click back
I have a page that contains a dynamic table where the user adds new lines and then clicks on a button to calculate the order value where I direct it to a new page showing the total order value and…