I have designed a multipage form for Create and Update data which will be loaded and saved back to the DB table. The form works as intended except the issue of autofill.
The first page of the form has a dropdown to select a name. The second page loads data of that person from DB and populates the fields.
Now the problem is that when multiple entries are done if the second entry form has some blank value in loaded fields, the field is automatically filled with values entered for the previous person.
How can I solve this problem? This problem leads to the inadvertent entry of wrong data by the user into the DB.
I checked all fields and ensured that autocomplete:off is mentioned in attribute column.
Even after disabling the browser autofill option, it still populates data from preceding entry.
The first page of the form has a dropdown to select a name. The second page loads data of that person from DB and populates the fields.
Now the problem is that when multiple entries are done if the second entry form has some blank value in loaded fields, the field is automatically filled with values entered for the previous person.
How can I solve this problem? This problem leads to the inadvertent entry of wrong data by the user into the DB.
I checked all fields and ensured that autocomplete:off is mentioned in attribute column.
Even after disabling the browser autofill option, it still populates data from preceding entry.