Posts by Max • 45 points
7 posts
-
0
votes1
answer65
viewsA: form does not access the route created in the Laravel
I got through it: https://stackoverflow.com/questions/33565479/notfoundhttpexception-in-routecollection-php-line-161-in-laravel-5 I basically used an implicit route, and created the methods in the…
-
1
votes1
answer65
viewsQ: form does not access the route created in the Laravel
I have a ready form that I am trying to incorporate into a 5.2 Standard System <form name="formEireli" id="formEireli" action="{{ url('script') }}" target="_blank" method="post"> is in the…
-
1
votes1
answer132
viewsA: searching data in csv file with Javascript
I managed to solve, I’ll leave the solution here to help someone one day. I converted my csv file into a json file, has several sites on the net that does it automatically, it was like this: json: […
-
1
votes1
answer132
viewsQ: searching data in csv file with Javascript
I’m researching a solution to a problem and I haven’t found anything I could understand, so far, I have a csv file that contains the data in this format: 0111-3/01,"Cultivation of rice" On the left…
-
0
votes1
answer121
viewsQ: input that complete word being typed
all right? I am trying to create a function in JS that as the user is typing in the input, it will complete ahead with suggestions, as it is a very large list of all nationalities of the world,…
-
0
votes1
answer31
viewsQ: How to set date type in JS
I am trying to fill in an input date type, through a JS function I’m trying something like: id('nascTit').value = 2005-05-15; but the following error appears: The specified value "yyyy-MM-dd" does…
javascriptasked Max 45 -
0
votes1
answer51
viewsQ: Doubt in Javascript when creating dynamic Ivs
I made a code that adds a set of fields within a form, when prompted by a button, and some of these fields use js functions to create masks (for CPF, rg, CEP), the problem is there, these mask…